在 Windows 7 中禁用关闭窗口选项
我的应用程序是在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用:
编辑:
是的,您应该检查
e.CloseReason
属性。发件人的类型是您可以关闭的另一个参数,以决定是否取消关闭请求。Use:
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.