如果用户单击 [X] 按钮与选择“退出”按钮,则实现不同的行为。菜单项

发布于 2024-10-30 07:26:32 字数 251 浏览 0 评论 0原文

C# 中有没有办法根据用户是否单击 [X] 按钮或选择“退出”菜单项来实现不同的行为?

我想要做的是,如果他们单击 [X],它会最小化为托盘图标,但如果他们右键单击托盘图标,则会弹出一个带有“退出”选项的上下文菜单。如果他们单击“退出”选项,应用程序应该退出。

我尝试在 Main_FormClosing(object sender, FormClosingEventArgs e) 方法中检查“对象发送者”...但它似乎总是表明该事件是由我的主类发送的?

Is there a way in C# to implement a different behavior based on whether the user clicks the [X] button, or chooses the "Exit" menu item?

What I want to do is make it so that if they click the [X], it minimizes to a tray icon, but if they right-click the tray icon, it brings up a context menu with an "Exit" option. If they click that "Exit" option, the application should exit.

I tried checking "object sender" in my Main_FormClosing(object sender, FormClosingEventArgs e) method... but it always seems to indicate the event is being sent by my main class?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

深居我梦 2024-11-06 07:26:32

bool 成员添加到您的表单中。在退出菜单项单击事件调用 Close 之前将其设置为 true。在 FormClosing 中,检查该变量是否已设置并正确处理逻辑。

Add a bool member to your form. Set it to true right before your exit menu item click event calls Close. In FormClosing, check to see if that variable is set and handle the logic appropriately.

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