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.
如何在 WPF 中实现 MDI 应用程序?在 windows 窗体中,我习惯于编写如下代码:
Form2 oForm2 = new Form2(); oForm2.MdiParent = this; oForm2.Show();
如何在 WPF 中完成同样的事情?
WPF 中没有现成的内置实现,但是已经有人从头开始这样做了,检查这个 codeplex 项目:
WPF 多文档界面 (MDI)