vote up 0 vote down star

is there a way to do this?

flag

WebForms or WinForms? – jrummell Oct 2 at 18:20

4 Answers

vote up 5 vote down check

Both the Panel and the Form class have a Controls collection property, which has a Clear() method...

MyPanel.Controls.Clear();

or

MyForm.Controls.Clear();

But Clear() doesn't call dispose() (All it does is remove he control from the collection), so what you need to do is

   List<Control> ctrls = new List<Control>(MyPanel.Controls);
   MyPanel.Controls.Clear();  
   foreach(Control c in ctrls )
      c.Dispose();

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...

link|flag
didn't notice =P – Luiscencio Oct 2 at 18:20
vote up 1 vote down

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:

foreach(var control in this.Controls)
{
   control.Dispose();
}
link|flag
vote up 1 vote down

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:

protected override void Dispose(bool disposing)
{
    if (disposing && (components != null))
    {
        components.Dispose();
    }

    base.Dispose(disposing);
}
link|flag
vote up 0 vote down

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().

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.