我如何在C#系统托盘应用程序中重复运行代码(就像在计时器上一样)

本文关键字:代码 计时器 一样 运行 系统 应用程序 | 更新日期: 2023-09-27 18:25:30

我从C#中的默认Windows窗体应用程序开始,我更改的只是Progam.cs

Application.Run(new Form1());

Application.Run(new MyCustomApplicationContext());

它引用了一个自定义类(MyCustomApplicationContext:ApplicationContext),它以系统托盘图标而不是Windows窗体的形式运行我的程序。构造函数包含以下代码:

private NotifyIcon trayIcon = new NotifyIcon();
trayIcon.ContextMenu = new ContextMenu(
    new MenuItem[] 
    {
        new MenuItem("Exit", Exit)
    });

这允许用户右键单击图标,为他们提供一个带有"退出"选项的上下文菜单,该选项将运行关闭程序的功能。

在MyCustomApplicationContext构造函数的末尾,我调用类中名为Update()的递归函数,该函数执行ping函数并根据ping延迟更改系统托盘图标。

不幸的是,我认为因为它是递归的,所以不允许运行任何其他代码,所以右键单击上下文菜单永远不会出现。我宁愿通过事件调用Update()函数,比如System.Timers.Timer Elapsed事件。我只是不知道事件是如何工作的,也不知道把代码放在哪里。

我如何在C#系统托盘应用程序中重复运行代码(就像在计时器上一样)

正如dmay所说,您可以使用Timer类来调用更新函数;然而,从你的描述来看,听起来你也需要考虑线程。

...
aTimer = new System.Timers.Timer(10000);
// Hook up the Elapsed event for the timer.
aTimer.Elapsed += UpdateTimer;
aTimer.Interval = 2000;
aTimer.Enabled = true;
...
public delegate void delUpdate();  // This is your delegate. Put it in your MyCustomApplicationContext class.
// This method will invoke your delegate method.
public void UpdateTimer(object sender, ElapsedEventArgs e)
{
    this.Invoke((delUpdate)Update);
}

使用Invoke方法的原因是计时器将从另一个线程运行,如果您想调用一个更新用户界面的方法,则需要调用控件。否则,您将通过尝试访问不属于计时器从中启动的线程的对象来生成异常。

正确的递归调用会阻塞应用程序主线程,从而停止GUI中的任何交互。如果你有应用程序,Windows会将其标记为"(未响应)"。

您可以使用Timer类

http://msdn.microsoft.com/en-us/library/system.timers.timer.aspx

        var timer = new Timer(tick_milliseconds);
        timer.Elapsed += DoOnTimerClick;
        timer.Enabled = true;