您好,登錄后才能下訂單哦!
先如下定義一個定時器:
public DispatcherTimer dispatcherTimer;
然后在某處創建這個對象實例:
dispatcherTimer = new System.Windows.Threading.DispatcherTimer();
設定超時回調函數:
dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick);
設定間隔(下方例子是10秒鐘):
dispatcherTimer.Interval = new TimeSpan(0, 0, 10);
啟動定時器:
dispatcherTimer.Start();
定義超時回調函數:
private void dispatcherTimer_Tick(object sender, EventArgs e)
{
// do something here...
}
值得注意的是DispatcherTimer是無法直接在console下運行的,需要額外的東西。
下面文字來自http://stackoverflow.com/questions/19351473/dispatchertimer-doesnt-work-in-console的解釋
The console and unit test environment by default don't have a dispatcher to run your dispatcher timer.
You can still use Dispatcher.CurrentDispatcher to create a Dispatcher to run your code.
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。