定時器實現

Posted adoc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了定時器實現相关的知识,希望对你有一定的参考价值。

private void OnTimerCallback(Object obj)
{
po_SvrTime = po_SvrTime.AddSeconds(1);

this.Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Normal,

(System.Threading.ThreadStart)delegate()
{
//你的定时处理
labSvcTime.Content = po_SvrTime.ToString("HH:mm:ss");
//label1.Content = po_SvrTime.ToString("HH");
//textBox1.Text = po_SvrTime.ToString("mm");
});
}

以上是关于定時器實現的主要内容,如果未能解决你的问题,请参考以下文章

DSP_CPU計時器

Oracle定時email通知

生成report由Eamil定時寄出

[QNAP crontab 定時執行程式

[Verilog]寫一個 Watch Dog Timer程式

JAVA中實現鏈表--LinkedList的使用