How can I implement an MDI application in WPF?
In windows forms I was used to write code like this:
Form2 oForm2 = new Form2();
oForm2.MdiParent = this;
oForm2.Show();
How can I accomplish the same thing in WPF?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is no ready made built-in implementation in WPF, but there are already people who did that already from scratch, check this codeplex project:
WPF Multiple Document Interface (MDI)