C#计时器跳过代码

时间:2015-12-25 14:57:47

标签: c# wpf multithreading timer event-handling

我告诉Timer在构造函数中启动。它启动,但是当它到达Timer.Elapsed事件时,它只运行方法中的第一个if语句。我已经检查过isWatching是否属实,但它仍然完全跳过它。它甚至没有到达if(isWatching)行。

代码:

MainWindow.xaml.cs

public partial class MainWindow : Window
{   
    public SessionManager SM { get; private set; }

    public MainWindow()
    {
        SM = new SessionManager();
        SM.NewDayEvent += SplitSession;
        ///code
    }
}

SessionManager.cs (此帖子中省略了一些变量):

public class SessionManager : INotifyPropertyChanged
{
    public delegate void NewDayEventHandler(object sender, EventArgs ea);
    public event NewDayEventHandler NewDayEvent;

    private bool _isWatching;
    private Timer _timer;
    private bool isWatching
    {
        get
        {
            return _isWatching;
        }
        set
        {
            _isWatching = value;
            if (!_isWatching)
            {
                _clockWatch.Stop();
            }
            else
            {
                _clockWatch.Start();
            }
        }
    }
    #endregion


    public SessionManager()
    {
        _clockWatch = new Stopwatch();
        _timer = new Timer(1000);
        _timer.Elapsed += timerElapsed;//focus on this here

        _isWatching = false;
        current_time = new DateTime();
        CurrentTime = DateTime.Now;
        _timer.Start();
    }

    public void timerElapsed(object sender, ElapsedEventArgs e)
    {
        CurrentTime = DateTime.Now;
        if (CurrentTime.TimeOfDay == TimeSpan.Parse("9:32 AM") && NewDayEvent != null)
        {
            NewDayEvent(this, new EventArgs());
        }
        if (isWatching)
        {
            if (CurrentSession != null)
            {
                //update the timespent variable of the current timeEntry
                if (CurrentSession.currentTimeEntry != null)
                {
                    CurrentSession.currentTimeEntry.TimeSpent = _clockWatch.Elapsed;
                    calculateTotalTime();

                    CalculateFilteredTimeSpent();
                }
            }
        }
    }
}

1 个答案:

答案 0 :(得分:3)

调用TimeSpan.Parse()时,您没有使用正确的格式。做你想做的事的正确方法是:

TimeSpan.Parse("9:32")

您当前的代码段会引发System.FormatException

A first chance exception of type 'System.FormatException' occurred in mscorlib.dll

然而,对于你想要实现的目标,在特定时间每天触发一次动作,上述方法可能不是最好的,因为它成功的可能性非常小。计时器将每1000毫秒运行一次,然后返回包含毫秒的当前时间。因此,定时器已用事件可以在9:32.0001调用,并且可能永远不会通过该条件。一个更好的选择可能是:

if (CurrentTime.TimeOfDay >= TimeSpan.Parse("9:32") && NewDayEvent != null)

在此时间过后,这将多次触发,因此您可以添加一个标记,以跟踪最后一个事件的处理日期。

或者您也可以查看.NET 4.5中的ScheduleAction或某些解决方案here