我创建了一个MDI表单&想要继承已经制作的Child表单。那么我必须要做的就是以该子表单访问我的MDI上的所有控件。 (我不想创建一个新的继承表单,我已经有一个)
答案 0 :(得分:0)
您的问题相当不明确,但似乎您在询问如何将表单显示为MDI孩子。我假设您已将IsMdiContainer
设置为true
作为主表单。
为了显示MDI子项,您需要为子表单设置MdiParent
属性。像这样:
ChildForm myChild = new ChildForm();
myChild.MdiParent = this;//this is the main form, the MDI parent
myChild.Show();