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

wp8.1 C#技巧: 计时器

时间:2014-12-10 22:30:20      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:ar   sp   for   on   art   时间   new   br   text   

public MainPage()
{
this.InitializeComponent();
this.timer = new DispatcherTimer();//新建委托时间实例
timer.Interval = new TimeSpan(0, 0, 0, 0, 200);//设置计时的刻度
timer.Tick += OnTimerTick;//监视增加计时间事件
timer.Start();//计时开始
}
void OnTimerTick(object sender, object e)
{
Data.Value += 0.2m;
this.txtValue.Text = string.Format("{0}s", Data.Value);
}
DispatcherTimer timer;

wp8.1 C#技巧: 计时器

标签:ar   sp   for   on   art   时间   new   br   text   

原文地址:http://www.cnblogs.com/NEIL-X/p/4156368.html

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