码迷,mamicode.com
首页 > 其他好文 > 详细

定時器實現

时间:2020-05-11 18:56:02      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:time   win   threading   call   cond   star   ring   dstar   delegate   

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");
});
}

定時器實現

标签:time   win   threading   call   cond   star   ring   dstar   delegate   

原文地址:https://www.cnblogs.com/aDoc/p/12870674.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!