vote up 1 vote down star

I have a Panel control. And inside the panel users can add combobox's, textbox's labels etc and drag them around and stuff, and there's a Delete button on my form where if they click it, it will delete all controls inside that panel. BUT this code:

foreach( Control control in panel.Controls )
{
     control.Dispose();
}

... Does not work properly. It doesn't always Dispose of ALL the controls inside the panel. Sometimes it gets rid of most of them, sometimes it only gets rid of one or two. Sometimes all but 1 are Disposed. WTF?

EDIT:


Here is the code I use to add the controls to the Panel:

button1_Click(object sender, EventArgs e)
{
    TextBox tbox = new TextBox();
    tbox.Multiline = true;
    tbox.IsAccessible = true;

    panel.Controls.Add(tbox);
}
flag

73% accept rate
2  
I think your problem is somewhere else in the code. – David Sep 29 at 15:30
I'll edit my question with the code used to create the controls. – baeltazor Sep 29 at 15:31
3  
I agree with Dan Herbert's answer. I think you have a fundamental misunderstanding of what calling dispose does. – John Kraft Sep 29 at 15:33
1  
I thought you meant "WPF" instead of "WTF", but I guess you had it right the first time. :) – MusiGenesis Sep 29 at 15:35
3  
Calling Dispose doesn't actually necessarily do anything, and it certainly doesn't necessarily cause the control to close or disappear. – Rex M Sep 29 at 15:37

3 Answers

vote up 8 vote down check

A simpler way to delete all your controls is to do this:

panel.Controls.Clear();
link|flag
thank you MusiGenesis :) – baeltazor Sep 29 at 15:42
vote up 1 vote down

I have seen this before, you are removing items from acollection that make the collection itself smaller. e.g if there are 5 items in the collection as you move down through it you come to the end of the list sooner than you expect because the list gets smaller with every Dispose() you issue.

link|flag
1  
Not sure that's going to apply in a foreach loop. – Lazarus Sep 29 at 15:37
thank you Darrin that was much appreciated. I understand what's going on now. Thanks again. :) – baeltazor Sep 29 at 15:45
vote up 6 vote down

Dispose() only cleans up unmanaged resources (although Paul Williams noted in the comments that it is usually more complex than this!) so it may or may not do anything useful in your case.

Try removing the controls with the RemoveAt(i) method, not Dispose():

for(int i = panel.Controls.Count-1; i >= 0; i--)
{
    panel.Controls.RemoveAt(i);
}
link|flag
5  
Or you can use panel.Controls.Clear() if you want to remove them all. Control.ControlCollection will take care of clean up if necessary. – Patrik Sep 29 at 15:37
thank you patrik – baeltazor Sep 29 at 15:39
thank you Dan Herbert – baeltazor Sep 29 at 15:39
A proper overridden Dispose(boolean) method disposes of both managed and unmanaged resouces. Dispose(true) means dispose of both. Dispose(false) means you have a finalizer, and the finalizer called the Dispose method. If called from a finalizer, the Dispose method must not touch any other managed objects. It's too late for that. – Paul Williams Sep 29 at 15:40

Your Answer

Get an OpenID
or

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