我有托盘应用程序,如果单击托盘徽标,我想打开ContextMenuStrip。这是我的代码:
private void notifyIcon1_MouseClick(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
timeBroMenu.Show(Cursor.Position);
}
}
双击即可轻松完成。
private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)
{
timeBroMenu.Show(Cursor.Position);
}
有没有办法让左键单击工作?
答案 0 :(得分:1)
如果您已分配NotifyIcon的ContextMenuStrip属性,则无需处理Click事件。