MDI Form question

  • Thread starter Thread starter NuB
  • Start date Start date
N

NuB

I have an MDI form, I want to allow the uses to minimize all child forms
they have opened and have only one form maximized, how can I do something
like that?
 
System.Windows.Forms.Form[] c = this.MdiChildren;

foreach(System.Windows.Forms.Form x in c)
{
//do stuff here
}
 
Back
Top