溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

c# 之下如何做定時

發(fā)布時間:2020-06-28 10:26:04 來源:網(wǎng)絡(luò) 閱讀:581 作者:古泥瓦 欄目:編程語言

先如下定義一個定時器:

public DispatcherTimer dispatcherTimer;

然后在某處創(chuàng)建這個對象實(shí)例:

dispatcherTimer = new System.Windows.Threading.DispatcherTimer();

設(shè)定超時回調(diào)函數(shù):

dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick);

設(shè)定間隔(下方例子是10秒鐘):

dispatcherTimer.Interval = new TimeSpan(0, 0, 10);

啟動定時器:

dispatcherTimer.Start();

定義超時回調(diào)函數(shù):

private void dispatcherTimer_Tick(object sender, EventArgs e)

{

// do something here...

}


值得注意的是DispatcherTimer是無法直接在console下運(yùn)行的,需要額外的東西。

下面文字來自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.



向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI