(1)首先聲明Timer變量:
//一定要聲明成局部變量以保持對Timer的引用,否則會被垃圾收集器回收!
private System.Threading.Timer timerClose;
(2)在上述自動執行代碼后面添加如下Timer實例化代碼:
// Create a timer thread and start it
timerClose = new System.Threading.Timer(new TimerCallback(timerCall), this, 5000, 0);
//Timer構造函數參數說明:
Callback:一個 TimerCallback 委托,表示要執行的方法。
State:一個包含回調方法要使用的信息的對象,或者為空引用(Visual Basic 中為 Nothing)。
dueTime:調用 callback 之前延遲的時間量(以毫秒為單位)。指定 Timeout.Infinite 以防止計時器開始計時。指定零 (0) 以立即啟動計時器。
Period:調用 callback 的時間間隔(以毫秒為單位)。指定 Timeout.Infinite 可以禁用定期終止。
(3)定義TimerCallback委托要執行的方法:
private void timerCall(object obj)
{
timerClose.Dispose();
this.Close();
}
當然,除了使用上述System.Threading.Timer類的TimerCallback 委托機制外,應該還有很多其他的辦法。
另外,這里只是demo了TimerCallback委托的簡單應用。
實例如下:
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.Threading;
namespace MYTimerTest
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
System.Threading.Timer timer = new System.Threading.Timer(new TimerCallback(timer_Elapsed), null, 0, 1000);
}
void timer_Elapsed(object sender)
{
for (int i = 0; i < 10; i++)
{
Console.Out.WriteLine(DateTime.Now + " " + DateTime.Now.Millisecond.ToString() + "timer in:");
}
}
}
}
注意void timer_Elapsed(object sender)中的“object”對應new System.Threading.Timer(new TimerCallback(timer_Elapsed), null, 0, 1000)中的
第二個參數。
