WindowState = FormWindowState.Maximized

  • Thread starter Thread starter Brian K. Williams
  • Start date Start date
B

Brian K. Williams

On my MDI application I am setting one from to WindowState =
FormWindowState.Maximized. If this window is open then all windows open
Maximized regardless of their settings.


Thanks in advance for any help.
-Brian K. Williams
 
* "Brian K. Williams said:
On my MDI application I am setting one from to WindowState =
FormWindowState.Maximized. If this window is open then all windows open
Maximized regardless of their settings.

That's by design for MDI children.
 
Brian said:
On my MDI application I am setting one from to WindowState =
FormWindowState.Maximized. If this window is open then all windows open
Maximized regardless of their settings.


Thanks in advance for any help.
-Brian K. Williams


If I am understanding your problem correctly, this is how MDI works in
Windows. When a single MDI child window is maximized, it basically puts
all MDI child windows into the maximized state. You use Ctrl+F6 to
switch between them.

Nick
 
Back
Top