需要Dispatchertimer样本

时间:2012-12-19 23:39:21

标签: c#-4.0 windows-phone-8

Windows手机应用调度计时器。

我正在寻找一个很好的例子,说明如何使用计时器每秒更新一次手机数据。 到目前为止,我有关于使用DispatchTimer的信息,但尚未成功生成re

2 个答案:

答案 0 :(得分:1)

        var timer = new DispatcherTimer { Interval = TimeSpan.FromMilliseconds(500) };
        timer.Tick += TimerTick;
        timer.Start();


       private void TimerTick(object sender, EventArgs e)
       {
           var timer = sender as DispatcherTimer;
           if (timer != null)
           {
                // Write your code here .......
                timer.Tick -= TimerTick;

           }

       }

答案 1 :(得分:0)

获取look at my answer here,其中包含使用dispatchertimer启用屏幕倒计时的示例。