在 .NET 中重写 NotifyIcon

发布于 2024-09-08 19:31:04 字数 106 浏览 5 评论 0原文

我正在尝试覆盖 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

∝单色的世界 2024-09-15 19:31:04

只需使用 notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);

为什么你需要重写它?

Just use notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);

Why you need to override it?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文