anybody use .NET MDI containers much?
I've got an MDI Parent form that creates a bunch of smaller MDI child forms within it after a user clicks a toolbar. The child forms are all set to have the maximize button, and when clicked, they fill the parent container. But here's my problem:
Once you maximize one child, all of the subsequent child forms you open are maximized as well. Likewise, if you have several child forms open and maximized, clicking the shrink window button shrinks all of them.
Anyway to get around this?
Thanks, Elliot
WindowState.
It is considered to be a user preference, so interfering with it would be an annoyance to users. Can you explain why you would like your application to behave in the way you describe? – AntagonyMaximized
value orSize
andLocation
values whenever a child form is resized. That way it's clear what state to return to when restarting the app, and the restore sizes and location values remain intact – Antagony