is there a way to do this?
|
|
Both the Panel and the Form class have a Controls collection property, which has a Clear() method...
or
But Clear() doesn't call dispose() (All it does is remove he control from the collection), so what you need to do is
You need to create a separate list of the references because Dispose also will remove the control from the collection, changing the index and messing up the foreach... |
|||
|
|
|
I don't believe there is a way to do this all at once. You can just iterate through the child controls and call each of their dispose methods one at a time:
|
||
|
|
|
|
You don't give much detail as to why. This happens in the Dispose override method of the form (in form.designer.cs). It looks like this:
|
||
|
|
|
|
You didn't share if this were asp.net or winforms. If the latter, you can do well enough by first calling SuspendLayout() on the panel. Then, when finished, call ResumeLayout(). |
||
|
|
