MessageBox 在最大化 MDI 形式中失去焦点
我有一个 MDI 应用程序(用 .NET 2.0 编写),它允许用户打开多个子窗体。 子窗体始终在 MDI 父窗体内最大化。 当 MDI 父级最大化并且我尝试执行 MessageBox.Show 时,MessageBox 不显示。 如果我按 alt-tab 键(或者甚至只按 alt),消息框就会弹出到前面。
有什么想法如何让那个傻瓜一开始就出现吗?
这仅在 MDI 父级最大化时才会出现问题......
I have an MDI application (written in .NET 2.0) which lets users open multiple child forms. The child forms are always maximized inside the MDI parent. When the MDI parent is maximized and I attempt to do a MessageBox.Show, the MessageBox doesn't show. If I do an alt-tab (or even just press alt) the MessageBox pops to the front.
Any ideas how to make that sucker show up to begin with?
This is only a problem when the MDI parent is maximized...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
MessageBox.Show(窗口所有者、字符串消息、字符串标题)
将 MDI 应用程序设置为所有者,以便 MB 显示在前面
啊,您还应该在帖子中添加一些标签。
Try using
MessageBox.Show(Window owner, string message, string caption)
Setting the MDI application as owner so the MB is shown in the front
Ah, you should also add some tags to your post.