MDI单实例C#..如何实现?

发布于 2024-10-12 09:40:54 字数 350 浏览 2 评论 0原文

我在 codeproject 中找到了以下单实例代码。

frmSChild objfrmSChild = frmSChild.GetChildInstance();
objfrmSChild.MdiParent = this;
objfrmSChild.Show();
objfrmSChild.BringToFront();

它运行良好。但它只能工作一次。

我打开那个 frmSChild 2 或 3 次。它将提出这种形式。

但如果我关闭该表格并再次打开。出现错误,指出无法检测公开的对象

如何修改代码才能完成呢?

I found the following code in codeproject for single instance.

frmSChild objfrmSChild = frmSChild.GetChildInstance();
objfrmSChild.MdiParent = this;
objfrmSChild.Show();
objfrmSChild.BringToFront();

It is working fine. But it only works once.

I open the that frmSChild for 2 or 3 times. it will bring forwards that form.

But if I close that form and open again. there is an error stating cannot detect an exposed ojbect.

How to modify the code to get it done?

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

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

发布评论

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

评论(2

江南烟雨〆相思醉 2024-10-19 09:40:54

检查表单的 IsDispose 属性,如果为 true,则创建一个新实例。

Check the form's IsDisposed property, and, if it's true, make a new instance.

半边脸i 2024-10-19 09:40:54

http://www.codeproject.com/KB/cs/singleinstanceforms.aspx

使用 Generic 创建实例

drachenstern 编辑

   vvv click here to edit, yeah?

http://www.codeproject.com/KB/cs/singleinstanceforms.aspx

Using Generic to create instance

EDIT by drachenstern

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