我的WPF计时器有问题。
这是我的代码:
System.Windows.Threading.DispatcherTimer dispatcherTimer = new System.Windows.Threading.DispatcherTimer();
dispatcherTimer.Tick += new EventHandler(DispatcherTimer_Tick);
dispatcherTimer.Interval = new TimeSpan(0, 0, 1);
如您所见,间隔为1分钟。 但是当我启动我的计时器,1小时后我有10秒钟的延迟。所以,我想这是我的代码处理这个延迟,但我真的需要一个修复计时器,没有任何转变。
抱歉你的眼睛!!