MDI form

  • Thread starter Thread starter perspolis
  • Start date Start date
P

perspolis

Hi all
I used a MDI application..and in this application I have a panel in parent
form.
when I show some children and then I close them,I can't see the panel..I
wonder why the panel get invisible.
??
 
MDI parent forms automatically have an MdiClient control that hides
everything else on the form. You might be able to programatically move the
panel to the MdiClient in the form load handler.

See Windows Forms Tips and Tricks for details on how to find the MdiClient
control.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
thx Bob
Bob Powell said:
MDI parent forms automatically have an MdiClient control that hides
everything else on the form. You might be able to programatically move the
panel to the MdiClient in the form load handler.

See Windows Forms Tips and Tricks for details on how to find the MdiClient
control.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
Back
Top