在.NET中有三種計時器:
一、System.Windows.Forms命名空間下的Timer控件,它直接繼承自Componet。Timer控件只有綁定了Tick事件和設置Enabled=True後纔會自動計時,中止計時能夠用Stop()方法控制,經過Stop()中止以後,若是想從新計時,能夠用Start()方法來啓動計時器。Timer控件和它所在的Form屬於同一個線程;
二、System.Timers命名空間下的Timer類。System.Timers.Timer類:定義一個System.Timers.Timer對象,而後綁定Elapsed事件,經過Start()方法來啓動計時,經過Stop()方法或者Enable=false中止計時。AutoReset屬性設置是否重複計時(設置爲false只執行一次,設置爲true能夠屢次執行)。Elapsed事件綁定至關於另開了一個線程,也就是說在Elapsed綁定的事件裏不能訪問其它線程裏的控件(須要定義委託,經過Invoke調用委託訪問其它線程裏面的控件)。
三、System.Threading.Timer類。定義該類時,經過構造函數進行初始化。
在上面所述的三種計時器中,第一種計時器和它所在的Form處於同一個線程,所以執行的效率不高;而第二種和第三種計時器執行的方法都是新開一個線程,因此執行效率比第一種計時器要好,所以在選擇計時器時,建議使用第二種和第三種。函數
下面是三種定時器使用的例子:this
一、Timer控件spa
設計界面:線程
後臺代碼:設計
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Windows.Forms; 9 10 namespace TimerDemo 11 { 12 public partial class FrmMain : Form 13 { 14 //定義全局變量 15 public int currentCount = 0; 16 public FrmMain() 17 { 18 InitializeComponent(); 19 } 20 21 private void FrmMain_Load(object sender, EventArgs e) 22 { 23 //設置Timer控件可用 24 this.timer.Enabled = true; 25 //設置時間間隔(毫秒爲單位) 26 this.timer.Interval = 1000; 27 } 28 29 private void timer_Tick(object sender, EventArgs e) 30 { 31 currentCount += 1; 32 this.txt_Count.Text = currentCount.ToString().Trim(); 33 } 34 35 private void btn_Start_Click(object sender, EventArgs e) 36 { 37 //開始計時 38 this.timer.Start(); 39 } 40 41 private void btn_Stop_Click(object sender, EventArgs e) 42 { 43 //中止計時 44 this.timer.Stop(); 45 } 46 } 47 }
二、System.Timers.Timer3d
設計界面:code
後臺代碼:orm
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Windows.Forms; 9 10 namespace TimersTimer 11 { 12 public partial class FrmMain : Form 13 { 14 //定義全局變量 15 public int currentCount = 0; 16 //定義Timer類 17 System.Timers.Timer timer; 18 //定義委託 19 public delegate void SetControlValue(string value); 20 21 public FrmMain() 22 { 23 InitializeComponent(); 24 } 25 26 private void Form1_Load(object sender, EventArgs e) 27 { 28 InitTimer(); 29 } 30 31 /// <summary> 32 /// 初始化Timer控件 33 /// </summary> 34 private void InitTimer() 35 { 36 //設置定時間隔(毫秒爲單位) 37 int interval = 1000; 38 timer = new System.Timers.Timer(interval); 39 //設置執行一次(false)仍是一直執行(true) 40 timer.AutoReset = true; 41 //設置是否執行System.Timers.Timer.Elapsed事件 42 timer.Enabled = true; 43 //綁定Elapsed事件 44 timer.Elapsed += new System.Timers.ElapsedEventHandler(TimerUp); 45 } 46 47 /// <summary> 48 /// Timer類執行定時到點事件 49 /// </summary> 50 /// <param name="sender"></param> 51 /// <param name="e"></param> 52 private void TimerUp(object sender, System.Timers.ElapsedEventArgs e) 53 { 54 try 55 { 56 currentCount += 1; 57 this.Invoke(new SetControlValue(SetTextBoxText),currentCount.ToString()); 58 } 59 catch (Exception ex) 60 { 61 MessageBox.Show("執行定時到點事件失敗:" + ex.Message); 62 } 63 } 64 65 /// <summary> 66 /// 設置文本框的值 67 /// </summary> 68 /// <param name="strValue"></param> 69 private void SetTextBoxText(string strValue) 70 { 71 this.txt_Count.Text = this.currentCount.ToString().Trim(); 72 } 73 74 private void btn_Start_Click(object sender, EventArgs e) 75 { 76 timer.Start(); 77 } 78 79 private void btn_Stop_Click(object sender, EventArgs e) 80 { 81 timer.Stop(); 82 } 83 } 84 }
三、System.Threading.Timer對象
設計界面:blog
後臺代碼:
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Windows.Forms; 9 using System.Threading; 10 11 namespace Threading.Timer 12 { 13 public partial class FrmMain : Form 14 { 15 //定義全局變量 16 public int currentCount = 0; 17 //定義Timer類 18 System.Threading.Timer threadTimer; 19 //定義委託 20 public delegate void SetControlValue(object value); 21 22 public FrmMain() 23 { 24 InitializeComponent(); 25 } 26 27 private void FrmMain_Load(object sender, EventArgs e) 28 { 29 InitTimer(); 30 } 31 32 /// <summary> 33 /// 初始化Timer類 34 /// </summary> 35 private void InitTimer() 36 { 37 threadTimer = new System.Threading.Timer(new TimerCallback(TimerUp), null, Timeout.Infinite, 1000); 38 } 39 40 /// <summary> 41 /// 定時到點執行的事件 42 /// </summary> 43 /// <param name="value"></param> 44 private void TimerUp(object value) 45 { 46 currentCount += 1; 47 this.Invoke(new SetControlValue(SetTextBoxValue), currentCount); 48 } 49 50 /// <summary> 51 /// 給文本框賦值 52 /// </summary> 53 /// <param name="value"></param> 54 private void SetTextBoxValue(object value) 55 { 56 this.txt_Count.Text = value.ToString(); 57 } 58 59 /// <summary> 60 /// 開始 61 /// </summary> 62 /// <param name="sender"></param> 63 /// <param name="e"></param> 64 private void btn_Start_Click(object sender, EventArgs e) 65 { 66 //當即開始計時,時間間隔1000毫秒 67 threadTimer.Change(0, 1000); 68 } 69 70 /// <summary> 71 /// 中止 72 /// </summary> 73 /// <param name="sender"></param> 74 /// <param name="e"></param> 75 private void btn_Stop_Click(object sender, EventArgs e) 76 { 77 //中止計時 78 threadTimer.Change(Timeout.Infinite, 1000); 79 } 80 } 81 }
代碼下載連接:http://files.cnblogs.com/files/dotnet261010/Timer.rar