如何创建MDI表单

时间:2011-10-05 06:54:38

标签: windows

我正在使用C# 我想要代码来创建MDI子窗体。我想从主表单菜单项打开子类。

1 个答案:

答案 0 :(得分:1)

您只需设置子表单的MdiParent属性即可。

MyChildForm child = new MyChildForm();
child.MdiParent = this;//where 'this' refers to your main form
child.Show();

您还需要为主表单设置IsMDIContainer = true

walkthrough of the basics on MSDN