我啓動我的Windows計時器,並試圖阻止,但似乎並不奏效,請參閱我的代碼:再次定時器如何在.net中工作?
private void button1_Click(object sender, EventArgs e)
{
timer1.Start();
}
private void timer1_Tick(object sender, EventArgs e)
{
MessageBox.Show("Hello");
timer1.Stop();
}
它一遍又一遍地顯示了消息,並沒有停止。請給我一些想法,我非常感謝你的幫助。
也許這個鏈接將幫助你解決你的問題。 http://stackoverflow.com/questions/4563704/c-sharp-how-do-you-stop-a-timer – Joseph
這將幫助您瞭解http://stackoverflow.com/a/4563738/5001784 –