标签: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