G
Guest
I have a MDI windows client written in C#. I try to control maximize and
normal size of forms by using:
this.WindowState = FormWindowState.Normal;
If I have a maximized MDI child form and open another child form containing
the line of code above both child forms end up in Normal state. It seems I
cannot control the size of forms on an individual basis.
If I have a maximized MDI child form and open another child form without the
line of code above both forms end up as maximized, although the WindowState
of the latter is set to "Normal" in the form designer properties.
How can I control the WindowState for each form in an MDI application?
Should I use some other property of the form to control maximimized versus
normal WindowState?
Regards
Tore
normal size of forms by using:
this.WindowState = FormWindowState.Normal;
If I have a maximized MDI child form and open another child form containing
the line of code above both child forms end up in Normal state. It seems I
cannot control the size of forms on an individual basis.
If I have a maximized MDI child form and open another child form without the
line of code above both forms end up as maximized, although the WindowState
of the latter is set to "Normal" in the form designer properties.
How can I control the WindowState for each form in an MDI application?
Should I use some other property of the form to control maximimized versus
normal WindowState?
Regards
Tore