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

silverlight 定时器 System.Windows.Threading.DispatcherTimer

时间:2014-05-26 01:48:30      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   c   code   java   

bubuko.com,布布扣
 1 声明
 2 System.Windows.Threading.DispatcherTimer _MessageControler;
 3  
 4 //刷新
 5             _MessageControler = new System.Windows.Threading.DispatcherTimer();
 6             _MessageControler.Interval = new TimeSpan(0, 0, 600);
 7             _MessageControler.Tick += new EventHandler(_MessageControler_Tick);
 8             _MessageControler.Start();
 9  
10  
11 定时执行的方法:_MessageControler_Tick
12  
13 private void _MessageControler_Tick(object sender,EventArgs e)
14         {
15             //具体方法        
16         }
bubuko.com,布布扣

 

silverlight 定时器 System.Windows.Threading.DispatcherTimer,布布扣,bubuko.com

silverlight 定时器 System.Windows.Threading.DispatcherTimer

标签:style   class   blog   c   code   java   

原文地址:http://www.cnblogs.com/qiernonstop/p/3749720.html

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