我想在我的主Windows窗体中创建一个窗口。
赞:An Example和Other Example (Just Minimized)或WinRAR。这可能在Windows窗体上?
(注意:如果我的语法不好,抱歉。我不是英国人。)
答案 0 :(得分:1)
编辑使答案不那么模糊/只链接
MDI是您正在寻找的。首先,您需要将主窗体的(父)IsMDIContainer属性设置为true。
之后,您可以添加MainMenu,它将为您提供在父表单中打开子表单的选项。您需要在项目中添加第二个表单,以用作子表单的模板。然后,您必须创建该表单的实例。
//Create a new instance of the MDI child template form
Form2 chForm = new Form2();
//Set parent form for the child window
chForm.MdiParent=this;
//Display the child window
chForm.Show();
使用此链接获取有关MDI父子表格的更多详细信息: Form Inside a form