我确实有一个函数来更新我的 UI:目前我在我的 Action 函数中调用这个函数超过 8 次,这将更新我的 UI
public void CheckStatus()
{
this.ovl_stacker1.FillColor =
OvalShape == MEssage.EMPTY ? Color.Red :
OvalShape == Message.WARNING ? Color.Yellow : Color.Green;
this.OvalShape .Refresh();
}
我怎样才能让这个功能在我的主服务器上每 5 秒自动运行一次?(因为我不想多次调用其他函数中的函数)
这是我的动作函数
public void Action()
{
//do something....
checkstatus();
//do something.......
checkstatus();
//do something........
checkstatus();
...
...
..
}