C# WPF子窗口(关于窗口)

发布于 2024-11-04 03:27:35 字数 267 浏览 1 评论 0原文

我有一个正在开发的 C#/WPF 应用程序...我有一个名为 About 的 btn,它应该打开一个新窗口,其中包含有关应用程序或我将放入其中的任何内容的详细信息。

当我单击 btn 时,会打开一个新窗口(关于),当我再次单击时,当新窗口(关于)打开时,会打开另一个窗口,如何防止这种情况发生,我也希望在以下情况下禁用该应用程序About 窗口打开并在About 窗口关闭时启用,就像单击“about”时的大多数应用程序一样。

I have an application on C#/WPF that I`m developing ... I have a btn named About which should open a new window that contains details about the application or whatever I will put in it.

When I click the btn, a new window (about) opens, when I click again, while the new window (about) is opened another one is opened, how can I prevent this from happening, I also want the application to be disabled when the About window is opened and to be enabled when the About window is closed, Like most of the applications when about is clicked.

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

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

发布评论

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

评论(2

会发光的星星闪亮亮i 2024-11-11 03:27:35

您应该使用 ShowDialog 方法:http://msdn。 microsoft.com/en-us/library/system.windows.window.showdialog.aspx

代码示例:

// Instantiate window
AboutWindow aboutWindow = new AboutWindow();

// Show window modally
// NOTE: Returns only when window is closed
Nullable<bool> dialogResult = aboutWindow.ShowDialog();

You should use the ShowDialog Method: http://msdn.microsoft.com/en-us/library/system.windows.window.showdialog.aspx

Code Sample:

// Instantiate window
AboutWindow aboutWindow = new AboutWindow();

// Show window modally
// NOTE: Returns only when window is closed
Nullable<bool> dialogResult = aboutWindow.ShowDialog();
红尘作伴 2024-11-11 03:27:35

只需使用 ShowDialog() 方法而不是 Show()

AboutWindow aboutWindow = new AboutWindow();
aboutWindow.ShowDialog();

Just use ShowDialog() method instead of Show()

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