WPF 窗口和消息框在顶部打开

发布于 2024-10-28 12:26:14 字数 139 浏览 6 评论 0原文

如何使窗口和消息框在屏幕顶部打开但不保持这种状态? Topmost 属性在这里不起作用,因为它使窗口始终位于顶部,而我只需要它在顶部打开。问题是,当 topmost = false 时,我们的窗口和消息框有时会不在屏幕顶部打开,这会让用户感到不舒服。有什么想法吗?

How can i make the window and the messagebox be opened at the top of the screen but not to keep this state? Topmost property doesn't work here, because it makes the window to be always at the top, and i need it only to be opened at the top. The problem is that when the topmost = false, our windows and messageboxes are opened not at the top of the screen sometimes, which can make users uncomfortable. Any ideas?

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

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

发布评论

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

评论(3

初熏 2024-11-04 12:26:15

您是否在寻找 Window.Activate?这是引起用户注意的窗口的首选机制。

请注意,它带有限制

Are you looking for Window.Activate? This is the preferred mechanism for bringing your window to the attention of the user.

Be aware that it comes with restrictions.

耶耶耶 2024-11-04 12:26:15

创建窗口时尝试使用

window.Owner = owner 或 Window.GetWindow(this)

并查看窗口是否位于顶部

while createing windows try with

window.Owner = owner or Window.GetWindow(this)

and see whether windows coming on top

樱桃奶球 2024-11-04 12:26:15

最简单的方法:使用 MessageBoxOptions.DefaultDesktopOnly 将 MessageBox 保持在窗口顶部。

MessageBox.Show("You entered an incorrect value.Try once more.", "Wrong input", MessageBoxButton.OK, MessageBoxImage.Exclamation,MessageBoxResult.OK,MessageBoxOptions.DefaultDesktopOnly);

Simplest catch: using MessageBoxOptions.DefaultDesktopOnly keeps the MessageBox on top of the window.

MessageBox.Show("You entered an incorrect value.Try once more.", "Wrong input", MessageBoxButton.OK, MessageBoxImage.Exclamation,MessageBoxResult.OK,MessageBoxOptions.DefaultDesktopOnly);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文