關於C#中timer類 在C#裏關於定時器類就有3個:this
1.定義在System.Windows.Forms裏編碼
2.定義在System.Threading.Timer類裏spa
3.定義在System.Timers.Timer類裏code
System.Windows.Forms.Timer是應用於WinForm中的,它是經過Windows消息機制實現的,相似於VB或Delphi中的Timer控件,內部使用API SetTimer實現的。它的主要缺點是計時不精確,並且必須有消息循環,Console Application(控制檯應用程序)沒法使用。orm
System.Timers.Timer和System.Threading.Timer很是相似,它們是經過.NET Thread Pool實現的,輕量,計時精確,對應用程序、消息沒有特別的要求。htm
System.Timers.Timer還能夠應用於WinForm,徹底取代上面的Timer控件。它們的缺點是不支持直接的拖放,須要手工編碼。blog
本文URL:http://www.bianceng.cn/Programming/csharp/201410/45596.htm事件
下面舉例說明,System.Timers.Timer定時器的用法。it
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Timers; namespace Timer001 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } //實例化Timer類 System.Timers.Timer aTimer = new System.Timers.Timer(); private void button1_Click(object sender, EventArgs e) { this.SetTimerParam(); } private void test(object source, System.Timers.ElapsedEventArgs e) { MessageBox.Show(DateTime.Now.ToString()); } public void SetTimerParam() { //到時間的時候執行事件 aTimer.Elapsed += new ElapsedEventHandler(test); aTimer.Interval = 1000; aTimer.AutoReset = true;//執行一次 false,一直執行true //是否執行System.Timers.Timer.Elapsed事件 aTimer.Enabled = true; } } }