MDI 父子

发布于 2024-12-09 09:34:30 字数 94 浏览 0 评论 0原文

我创建了一个 MDI 表单 &想要继承一个已经制作好的子窗体。那么我必须做什么才能访问该子窗体中 MDI 上的所有控件。 (我不想创建一个新的继承形式,我已经有一个)

I have created one MDI form & Want to inherit a already made Child form. So what I have to do to access all controls on my MDI in that child form. (I dont want to create a new inherited form, I have already one)

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

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

发布评论

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

评论(1

请别遗忘我 2024-12-16 09:34:30

您的问题相当不清楚,但您似乎是在询问如何将表单显示为 MDI 子项。我假设您已将主表单的 IsMdiContainer 设置为 true

为了显示 MDI 子窗体,您需要设置子窗体的 MdiParent 属性。像这样:

ChildForm myChild = new ChildForm();
myChild.MdiParent = this;//this is the main form, the MDI parent
myChild.Show();

Your question is rather unclear but it appears that you are asking how to show a form as an MDI child. I assume that you have already set IsMdiContainer to true for your main form.

In order to show an MDI child you need to set the MdiParent property for the child form. Like this:

ChildForm myChild = new ChildForm();
myChild.MdiParent = this;//this is the main form, the MDI parent
myChild.Show();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文