在 .NET 中重写 NotifyIcon
我正在尝试覆盖 .NET 中 NotifyIcons 上的单击事件。 问题是类是密封的并且不能被继承。我想要实现的功能不是使用上下文菜单来控制应用程序,而是想双击图标来切换应用程序模式。 这可能吗?
I'm trying to override click events on NotifyIcons in .NET.
The problem is the class is sealed and cannot be inherited. The functionality I'd like to attain is rather than using a context menu to control the application, I'd like to doubleclick the icon to toggle the applications mode.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用
notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);
为什么你需要重写它?
Just use
notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);
Why you need to override it?