如何让 ContextMenuStrip 在单击 NotifyIcon 时显示?
我有一个分配给 NotifyIcon 的 ContextMenuStrip,并且右键单击即可正常工作。
如何连接鼠标单击事件来告诉 NotifyIcon 显示其 ContextMenuStrip?
private void taskbarIcon_MouseClick(object sender, MouseEventArgs e)
{
switch (e.Button)
{
case MouseButtons.Left:
// What could I use here?
break;
default:
break;
}
}
I have a ContextMenuStrip assigned to a NotifyIcon and this works with the right click fine.
How may I wire up the mouse-click event to tell the NotifyIcon to show its ContextMenuStrip?
private void taskbarIcon_MouseClick(object sender, MouseEventArgs e)
{
switch (e.Button)
{
case MouseButtons.Left:
// What could I use here?
break;
default:
break;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够使用以下代码:
MSDN 网站上有一个关于该主题的好帖子。
You should be able to use the following code:
Here's a good thread about the subject at MSDN site.