Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
How to display panel in MDI parent form if add panel it display the above the child form that means it hides child form anybody help me
Posted
Updated 19-Nov-12 15:15pm
v3
Comments
n.podbielski 19-Nov-12 13:03pm    
Try trying.
Sergey Alexandrovich Kryukov 19-Nov-12 15:40pm    
What did you try?
--SA

1 solution

Normally, MDI parents are not designed to show anything except one window (in terms of raw Windows API) called "MDI client" used as a client area for all MDI Children, and nothing else. Here is what it is:
http://msdn.microsoft.com/en-us/library/system.windows.forms.mdiclient.aspx[^].

It's pretty difficult to show anything else in it, and of course, it is not designed to hold any controls other than forms acting as MDI children.

That said, MDI UI is just not good enough. 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
 
v4
Comments
Espen Harlinn 19-Nov-12 19:14pm    
5'ed!
Sergey Alexandrovich Kryukov 19-Nov-12 19:29pm    
Thank you, Espen.
--SA

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