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)