Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将窗口窗体嵌入到另一个这样的窗体中
我相信您想查找MDI(多文档界面)。
以下可能会做你想要的。ChildForm是您要放置在其中的表单ParentForm。
ChildForm
ParentForm
ChildForm.TopLevel = false; ParentForm.Controls.Add(ChildForm); ChildForm.Show();
请注意,您可能必须使用Location子窗体的 。
Location