Click here to Skip to main content
15,891,316 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi
I have 3 form - form1, form2, form3.

Form1 is MDI Parent for form2.

and In form2 button click I have create obj of form3 and try to show it with child of form1. I mean form 1 will also parent for form 3 which I have called from 2
Posted

Here is the idea: who needs MDI, ever? Why torturing yourself and scaring off your users?
Do yourself a great favor: do not use MDI at all. You can do much easier to implement design without it, with much better quality. MDI is highly discouraged even by Microsoft, in fact, Microsoft dropped it out of WPF and will hardly support it. More importantly, you will scare off all your users if you use MDI. Just don't. Please see:
http://en.wikipedia.org/wiki/Multiple_document_interface#Disadvantages[^],
How to Create MDI Parent Window in WPF?[^].

I can explain what to do instead. Please see my past answers:
How to Create MDI Parent Window in WPF? [Solution 2],
Question on using MDI windows in WPF[^],
MDIContainer giving error[^],
How to set child forms maximized, last childform minimized[^].

—SA
 
Share this answer
 
Comments
Maciej Los 18-Aug-13 12:08pm    
Never ending story ;)
People don't want to learn... ;(
+5!
Sergey Alexandrovich Kryukov 18-Aug-13 12:15pm    
I would not say so, in this case. Some people are unaware is don't think about certain thing, but when directed, they want to learn.
Otherwise I would give up.

Thank you, Maciej.
—SA
Maciej Los 18-Aug-13 16:00pm    
Keep the faith! I'll stand by you ;)
Sergey Alexandrovich Kryukov 18-Aug-13 17:05pm    
Thank you again. I'll rely on you. :-)
—SA
Hi there,
Please take a look at this link: Introduction to MDI Forms with C#[^]
that should do it
Good Luck,
z3ngew
 
Share this answer
 
On button click of form2, write below code:
C#
Form3 frm3 = new Form3();
frm3.MdiParent = ((Form1)this.ParentForm);
frm3.Show();
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900