是否可以在不阻止所有其他 MdiChildForms 和 MdiParent 的情况下使用 MdiChildForm 中的 ShowDialog?

发布于 2024-10-12 13:02:37 字数 292 浏览 2 评论 0原文

我需要从 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 技术交流群。

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

发布评论

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

评论(1

笑饮青盏花 2024-10-19 13:02:37

此中描述了一种可能的策略文章,它依赖于使用 .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's Enabled 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 the FormClosing event of the dialog.

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