在 Windows 7 中禁用关闭窗口选项

发布于 2024-10-31 20:44:09 字数 425 浏览 0 评论 0原文

我的应用程序是在 VB.net 中使用 3.5 框架。我想在进行某些处理时禁用应用程序主窗体上的关闭按钮("[X]")

我通过重写表单的“ReadOnly Property CreateParams()”来实现禁用。这工作正常,因为表单上的控制按钮和任务栏中右键单击的关闭选项都显示它们为禁用状态。

这满足了我在 Windows XP 上的需求,但在 Windows 7 上无法满足我的需求。在 Windows 7 中,右键单击任务栏中的应用程序图标会显示一个不同的菜单...其中有一个新的“关闭窗口”选项。

原始菜单中的关闭仍然将其显示为禁用(此旧菜单是隐藏的,但可以通过按住 Shift 键并右键单击任务栏中的应用程序图标来显示)。现在我还需要禁用这个“关闭窗口”选项......并且仅适用于我的应用程序。

有没有一种方法可以以编程方式执行此操作?

My application is in VB.net with 3.5 framework. I want to disable the close button ("[X]") on the main form of the application while doing some processing.

I have achieved the disabling by overriding the "ReadOnly Property CreateParams()" of the form. This is working fine, as both the control button on the form and close option on right click in the taskbar shows them as disabled.

This fulfills my needs on Windows XP but not on Windows 7. In Windows 7, right clicking on the application icon in the TaskBar shows a different menu...which has a new "Close window" option.

Close in the original menu still shows it as disabled (this old menu is hidden, but can be shown by holding Shift key and right click on the application icon in TaskBar). Now I need to disable this "Close window" option as well...and only for my application.

Is there a method for doing this programmatically?

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

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

发布评论

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

评论(1

孤千羽 2024-11-07 20:44:09

使用:

Private Sub MyForm_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
    e.Cancel = True
End Sub

编辑:

是的,您应该检查e.CloseReason属性。发件人的类型是您可以关闭的另一个参数,以决定是否取消关闭请求。

Use:

Private Sub MyForm_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
    e.Cancel = True
End Sub

Edit:

Yes, you should check the e.CloseReason property. The sender's type is another parameter you can key off of to decide whether to cancel the close request or not.

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