我在我的代碼中有一個Windows.Forms.Timer
,我正在執行3次。但是,定時器根本不調用滴答功能。定時器不會打勾
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()
正在代碼中的其他地方被調用。
第一個答案是正確:) –
從正在打電話糊塗? – Adil
Loopy()從代碼中的另一個地方被調用。 – cpdt