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

c# 之下如何做定时

时间:2016-03-13 18:19:21      阅读:336      评论:0      收藏:0      [点我收藏+]

标签:c#   timer   定时   定时器   dispatchertimer   

先如下定义一个定时器:

public DispatcherTimer dispatcherTimer;

然后在某处创建这个对象实例:

dispatcherTimer = new System.Windows.Threading.DispatcherTimer();

设定超时回调函数:

dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick);

设定间隔(下方例子是10秒钟):

dispatcherTimer.Interval = new TimeSpan(0, 0, 10);

启动定时器:

dispatcherTimer.Start();

定义超时回调函数:

private void dispatcherTimer_Tick(object sender, EventArgs e)

{

// do something here...

}

c# 之下如何做定时

标签:c#   timer   定时   定时器   dispatchertimer   

原文地址:http://11225176.blog.51cto.com/11215176/1750486

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