C#如何在给定时间运行代码

本文关键字:定时间 运行 代码 | 更新日期: 2023-09-27 18:27:51

简单地说,

我早上开始运行我的C#程序,程序应该在下午5:45向用户显示一条消息。我如何在C#中做到这一点?

编辑:我问这个问题是因为我认为使用计时器不是最好的解决方案(定期将当前时间与我运行任务所需的时间进行比较):

private void timerDoWork_Tick(object sender, EventArgs e)
{
    if (DateTime.Now >= _timeToDoWork)
    {
        MessageBox.Show("Time to go home!");
        timerDoWork.Enabled = false;
    }
}

C#如何在给定时间运行代码

我问这个问题是因为我认为使用计时器不是最好的解决方案(定期将当前时间与我运行任务所需的时间进行比较)

为什么?为什么不制定一个最佳解决方案呢?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));

您也可以使用任务调度器。

还有一个Timer类可以帮助您

您可以轻松地实现自己的报警类。首先,您可能需要检查MS文章末尾的Alarm类。

如果DateTime.Now==(您想要的特定时间),您可以使用计时器检查每分钟

这是一个带有窗口窗体的代码示例

public MainWindow()
    {
        InitializeComponent();
        System.Windows.Threading.DispatcherTimer timer_1 = new System.Windows.Threading.DispatcherTimer();
        timer_1.Interval = new TimeSpan(0, 1, 0);
        timer_1.Tick += new EventHandler(timer_1_Tick);
        Form1 alert = new Form1();
    }
    List<Alarm> alarms = new List<Alarm>();
    public struct Alarm
    {
        public DateTime alarm_time;
        public string message;
    }

    public void timer_1_Tick(object sender, EventArgs e)
    {
        foreach (Alarm i in alarms) if (DateTime.Now > i.alarm_time) { Form1.Show(); Form1.label1.Text = i.message; }
    }