我使用ShowBalloonTip类的TrayIcon方法显示气球提示。有没有办法处理这个气球的点击?

当我单击气球时,似乎没有事件发生,并且它仅关闭了气球。

最佳答案

我认为您的意思是NotifyIcon。使用以下模式...

NotifyIcon notifyIcon = null;
public Form1()
{
    InitializeComponent();
    notifyIcon = new NotifyIcon();
    // Initializing notifyIcon here...
    notifyIcon.BalloonTipClicked += new EventHandler(notifyIcon_BalloonTipClicked);
}

void notifyIcon_BalloonTipClicked(object sender, EventArgs e)
{
    // Operation you want...
}

我希望它能满足您的需求...

关于c# - 处理通过TrayIcon的ShowBalloonTip()显示的气球提示的单击,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3181594/

10-12 00:01