VS 2008 C# 将焦点仅设置为一种形式

发布于 2024-12-03 22:32:13 字数 110 浏览 1 评论 0原文

当我的表单(AboutForm)显示时,我需要将焦点保持在该表单上(用户应该只能单击“确定”按钮)!

VS2008中需要进行哪些设置?

谢谢!

问候莱昂22

When my form (AboutForm) is shown I need to hold the focus on this form (the user should only be able to click the OK button) !

Which setting is neccessary in VS2008?

Thanks!

greets leon22

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

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

发布评论

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

评论(1

以往的大感动 2024-12-10 22:32:13

您希望以模式方式显示它,因此请使用ShowDialog() 而不是 Show()。仅此而已。

例如:

using(var frm = new AboutForm()) {
    frm.ShowDialog(this);
}

重要的是:使用 ShowDialog 时,关闭表单不会 Dispose() 它,因此 using;参见MSDN:

与无模式窗体不同,当用户单击对话框的关闭窗体按钮或设置 DialogResult 属性的值时,.NET Framework 不会调用 Close 方法。相反,表单被隐藏,并且可以再次显示,而无需创建对话框的新实例。由于显示为对话框的窗体是隐藏的而不是关闭的,因此当应用程序不再需要该窗体时,必须调用该窗体的 Dispose 方法。

You want to show it modally, so use ShowDialog() rather than Show(). That is all.

For example:

using(var frm = new AboutForm()) {
    frm.ShowDialog(this);
}

important: when using ShowDialog, closing the form does not Dispose() it, hence the using; see MSDN:

Unlike modeless forms, the Close method is not called by the .NET Framework when the user clicks the close form button of a dialog box or sets the value of the DialogResult property. Instead the form is hidden and can be shown again without creating a new instance of the dialog box. Because a form displayed as a dialog box is hidden instead of closed, you must call the Dispose method of the form when the form is no longer needed by your application.

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