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
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top