如何在设定的时间间隔后停止Timer对象?

时间:2014-10-03 11:00:24

标签: c# datetime windows-phone-8 timer stopwatch

我已经将一个字符串值从文本框分配给日期时间变量。它的目的是作为一个标志告诉myTimer对象在达到workDt中存储的时间时停止(日期时间变量) )。

我尝试过的当前实现如下,其中我设置了一个if..else语句来检查定时器的当前时间是否等于文本框中输入的内容,但是它不会触发定时器停止

我在'if'语句中设置了一个断点,时间值存储在workDt中,但没有触发计时器停止。

任何人都可以看到我的实施中的缺陷或提供有关替代解决方案的任何建议吗?

private void startBtn_Tap(object sender, System.Windows.Input.GestureEventArgs e)
        {


            string wrkString;
            string rstString; 


            //Assign text box time string to string variables.
            wrkString = wrkTbx.Text;
            rstString = restTbx.Text;


            //Assign text box string value to a date time variable.

            DateTime workDt = DateTime.ParseExact(wrkString.Replace(": ", ":").Replace(" :", ":"), "HH:mm:ss:fff", CultureInfo.InvariantCulture);
            DateTime restDt = DateTime.ParseExact(rstString.Replace(": ", ":").Replace(" :", ":"), "HH:mm:ss:fff", CultureInfo.InvariantCulture);


            StopGoCvs.Background = new SolidColorBrush(Colors.Green);
            hornElmt.Play();
            //    // set up the timer
            myTimer = new DispatcherTimer();
            myTimer.Interval = new TimeSpan(0, 0, 0, 0, 1);
            myTimer.Tick += myTimer_Tick;

            //tell timer to stop when it has reached the allocated work time.
            if(myTimer.Interval != workDt.TimeOfDay)
            {
                // start both timers
                myTimer.Start();
                myStopwatch.Start();

            }
            else
            {
                myTimer.Stop();
                myStopwatch.Stop();

            }



        }

2 个答案:

答案 0 :(得分:1)

使计时器对象成为全局,以便类中的所有方法或事件都可以访问,然后启动计时器为每个时间段提供事件,然后在该事件上有条件地检查时间是否达到预期时间,然后停止计时器。 / p>

答案 1 :(得分:1)

将间隔设置为:myTimer.Interval = new TimeSpan(0, 0, 0, 0, 1); 意味着您设置1ms间隔,从而使其无法实现 条件:

myTimer.Interval == workDt.TimeOfDay

永远满足

您正在寻找的更多是StopWatch而不是计时器。