我问了这个问题,因为我认为使用计时器不是最好的解决方案(定期比较当前时间与我需要运行任务的时间)
为什么?为什么不定时最好的解决方案?IMO 计时器是最好的解决方案。但不是您实施的方式。试试下面的。
private System.Threading.Timer timer;
private void SetUpTimer(TimeSpan alertTime)
{
DateTime current = DateTime.Now;
TimeSpan timeToGo = alertTime - current.TimeOfDay;
if (timeToGo < TimeSpan.Zero)
{
return;//time already passed
}
this.timer = new System.Threading.Timer(x =>
{
this.ShowMessageToUser();
}, null, timeToGo, Timeout.InfiniteTimeSpan);
}
private void ShowMessageToUser()
{
if (this.InvokeRequired)
{
this.Invoke(new MethodInvoker(this.ShowMessageToUser));
}
else
{
MessageBox.Show("Your message");
}
}
像这样使用它
SetUpTimer(new TimeSpan(17, 45, 00));