如何在另一个窗口内创建窗体?

时间:2013-03-28 22:16:15

标签: c# c#-4.0 windows-forms-designer

我需要在这样的另一个内嵌窗口窗体 enter image description here

2 个答案:

答案 0 :(得分:2)

我相信你想要查找MDI(多文档界面)。

答案 1 :(得分:2)

以下可能会做你想要的。 ChildForm是您要放在ParentForm内的表单。

ChildForm.TopLevel = false;
ParentForm.Controls.Add(ChildForm);
ChildForm.Show();

请注意,您可能需要使用子表单的Location