運行一個函數,每5在C#的winform 自動秒每分鐘automactic當程序執行我調用一個方法到負載如何可以把這個代碼在C#的winform如何調用一個方法在C#的winform
公共無效InitTimer()
{
timer1 = new Timer();
timer1.Tick += new EventHandler(timer1_Tick);
timer1.Interval = 200; // in milliseconds
timer1.Start();
}
private void timer1_Tick(object sender, EventArgs e)
{
MessageBox.Show("test");
}
但是不是你的代碼工作?有一件事你必須改變的是5000(5秒)的時間間隔。但除此之外,我不知道你的疑問是什麼 –