标签: windows
我正在使用C# 我想要代码来创建MDI子窗体。我想从主表单菜单项打开子类。
答案 0 :(得分:1)
您只需设置子表单的MdiParent属性即可。
MdiParent
MyChildForm child = new MyChildForm(); child.MdiParent = this;//where 'this' refers to your main form child.Show();
您还需要为主表单设置IsMDIContainer = true。
IsMDIContainer = true
有walkthrough of the basics on MSDN。