我的代码中有一个Windows.Forms.Timer
,我正在执行 3 次。但是,计时器根本没有调用 tick 函数。
private int count = 3;
private timer;
void Loopy(int times)
{
count = times;
timer = new Timer();
timer.Interval = 1000;
timer.Tick += new EventHandler(timer_Tick);
timer.Start();
}
void timer_Tick(object sender, EventArgs e)
{
count--;
if (count == 0) timer.Stop();
else
{
// Do something here
}
}
Loopy()
正在从代码中的其他地方调用。