WPF 定时器
Posted senaites
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF 定时器相关的知识,希望对你有一定的参考价值。
//定时查询-定时器 DispatcherTimer dispatcherTimer = new DispatcherTimer(); dispatcherTimer.Tick += (s, e) => { //你要执行的代码 }; dispatcherTimer.Interval = new TimeSpan(0, 0, 1);//每隔一秒刷新 dispatcherTimer.Start();
以上是关于WPF 定时器的主要内容,如果未能解决你的问题,请参考以下文章