仅当单击“X”时退出应用程序带有“Shift”按钮按键保持?
通常单击右上角的“X”按钮将退出应用程序。我希望我的窗口窗体应用程序仅在按住“Shift”单击时退出。我怎样才能做到这一点?
Normally clicking 'X' button at the top right corner will exit the application. I want my window form application to exit only when holding the 'Shift' click. How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以向
Closing
事件添加一个处理程序,如果通过检查Keyboard.Modifiers
设置了适当的修饰符来取消,并根据需要取消。如果您愿意,您可能需要添加逻辑来检查鼠标是否单击了关闭按钮。You can add a handler to the
Closing
event and cancel if the appropriate modifiers are set by checkingKeyboard.Modifiers
and cancel as necessary. You may need to add logic to check if the mouse clicked the close button if you wish.