I am using MDIParent Form. when I close its child the object of child dispose. Is there any way to set child visibilty false instead of disposing?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
By default, when you close a form, it will be disposed. You have to override the
|
|||||||||
|
|
Yes. You can call the form's "Hide" method. You can also override OnClosed and not call its base implementation; HOWEVER, when you DO want to dispose of the form, this may get in your way. |
|||
|
|
You can cancel the close event and hide instead.
|
|||
|
|
|
Sure, you can cancel the close and hide it. Doesn't seem like a good thing to do, but you definitely can. http://msdn.microsoft.com/en-us/library/system.windows.forms.form.formclosing.aspx |
|||
|
|
FormClosingevent without a special case, you'll never be able to close the application. Whoops! That's probably not what you or the user intended. The code in my answer to the above-linked duplicate question is correct, though, and works without a hitch in both circumstances. – Cody Gray May 19 '11 at 14:53