定時器實現
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");
});
}
以上是关于定時器實現的主要内容,如果未能解决你的问题,请参考以下文章