是否可以在不阻止所有其他 MdiChildForms 和 MdiParent 的情况下使用 MdiChildForm 中的 ShowDialog?
我需要从 MdiChild (frmB) 表单打开模态表单 (frmD),而不阻塞主表单 (frmA) 和所有其他打开的 MdiChild 表单 (frmC)。然后我切换到 frmC,frmD 被隐藏。
这是类似的问题,但不是用于MDI应用。
有没有办法打开模式对话框并仅阻止打开它的 mdi 子窗体?
I need to open modal form (frmD) from MdiChild (frmB) form without blocking main form (frmA) and all others opened MdiChild forms (frmC). Then i switch to frmC the frmD is hidden.
This is the similar question, but not for Mdi application.
Is there a way to open a modal dialog and only have it block the mdi child form that opened it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此中描述了一种可能的策略文章,它依赖于使用
.Show()
方法而不是.ShowDialog()
来打开模式对话框并设置 MdiChild 的Enabled<在调用
.Show()
方法之前,将 /code> 属性设置为 false。然后,当对话框关闭时,您需要将 MdiChild 的
Enabled
属性设置回 true,这意味着您需要在 MdiChild 表单中创建一个事件处理程序来处理FormClosing< /code> 对话框事件。
One possible strategy is described in this article, which relies on using the
.Show()
method instead of.ShowDialog()
to open the modal dialog and setting the MdiChild'sEnabled
property to false just before you call the.Show()
method.You then need to set the
Enabled
property of your MdiChild back to true when the dialog is closed, which means that you will need to create an event handler in your MdiChild form to handle theFormClosing
event of the dialog.