码迷,mamicode.com
首页 > Windows程序 > 详细

WPF 定时器

时间:2018-10-18 17:01:10      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:pre   刷新   wpf   int   定时器   time   pat   tar   isp   

//定时查询-定时器
 DispatcherTimer dispatcherTimer = new DispatcherTimer();
 dispatcherTimer.Tick += (s, e) =>
 {
  //你要执行的代码
  };
 dispatcherTimer.Interval = new TimeSpan(0, 0, 1);//每隔一秒刷新
 dispatcherTimer.Start();

 

WPF 定时器

标签:pre   刷新   wpf   int   定时器   time   pat   tar   isp   

原文地址:https://www.cnblogs.com/SeNaiTes/p/9810087.html

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