C#Windows窗体 - 如何在主窗口上创建或打开弹出窗口,如WinRAR?

时间:2016-08-22 15:13:46

标签: c# .net

我想在我的主Windows窗体中创建一个窗口。
赞:An ExampleOther Example (Just Minimized)或WinRAR。这可能在Windows窗体上?

(注意:如果我的语法不好,抱歉。我不是英国人。)

1 个答案:

答案 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