仅当单击“X”时退出应用程序带有“Shift”按钮按键保持?

发布于 2024-09-14 07:26:11 字数 69 浏览 10 评论 0原文

通常单击右上角的“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 技术交流群。

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

发布评论

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

评论(1

月依秋水 2024-09-21 07:26:11

您可以向 Closing 事件添加一个处理程序,如果通过检查 Keyboard.Modifiers 设置了适当的修饰符来取消,并根据需要取消。如果您愿意,您可能需要添加逻辑来检查鼠标是否单击了关闭按钮。

private void Window_Closing(object sender, CancelEventArgs e)
{
    if (Keyboard.Modifiers == ModifierKeys.Shift) return; //exit if shift pressed

    //cancel by default
    e.Cancel = true;
}

You can add a handler to the Closing event and cancel if the appropriate modifiers are set by checking Keyboard.Modifiers and cancel as necessary. You may need to add logic to check if the mouse clicked the close button if you wish.

private void Window_Closing(object sender, CancelEventArgs e)
{
    if (Keyboard.Modifiers == ModifierKeys.Shift) return; //exit if shift pressed

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