c# Windows窗体-如何在主窗口上创建或打开像WinRAR这样的弹出窗口

本文关键字:窗口 WinRAR 创建 窗体 Windows | 更新日期: 2023-09-27 18:03:23

我想在主窗体中创建一个窗口。
喜欢:一个例子和其他例子(只是最小化)或WinRAR。这在Windows窗体上可能吗?

(注:如果我的语法不好,对不起。我不是英国人

c# Windows窗体-如何在主窗口上创建或打开像WinRAR这样的弹出窗口

编辑使答案不那么模糊/仅限

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父窗体和子窗体的详细信息:表单表单内部