I have a UI element in my application where a Panel is used to host one of several potential custom UserControls. The Panel itself is hosted in a standardised UserControl that I am using something like a non-modal dialog that I'm calling a 'pane'.

The method I use is to instantiate a new instance of the standard pane, then with logic instantiate one of the several optional hosted controls inside it using Panel.Controls.Add(control). I then add the new pane to the interface control in a set location, again with a Control.Controls.Add(control), followed by a control.BringToFront() to maximise its z position.

This all works well, however when the time comes to hide the pane and destroy it, I cannot seem to fully get rid of it. Originally I was simply using Control.Controls.Remove(control) and for good measure setting the pane's Parent property to Nothing. This would have the desired effect of making the pane disappear, and my assumption was that now the control was unreferenced, that GC would dispose of it.

What I am seeing however is that the control still blits instantaneously onto the screen when the next outer hosting TabControl changes tab page, implying it still exists somewhere. I can confirm that this is not a graphical issue and the pane object persists using the VS Watch window's 'Make Object ID'. (At least I think this is proof, that without a code-accessible reference I can still directly see the object and its properties continue to exist.)

I have tried replacing

Control.Controls.Remove(pane)
pane.Parent = Nothing

with

pane.Dispose()
GC.Collect()

where the Dispose call I can confirm both removes the control from its parent's Controls collection and sets its Parent property to Nothing, but appears to do no more. It persists after forced GC and still blits onscreen occasionally.

This all leads to my original question, what is the proper way to remove and fully destroy controls after they have served their purpose?

link|improve this question

67% accept rate
Are you sure the pane.Dispose() method is not leaving anything behind? An EventHandler perhaps? Some SqlConnection open? Something... – PedroC88 Dec 9 '11 at 15:26
This might lead to another question, I know using 'AddHandler's will leave behind some mess if not managed correctly, is there ever a case where the 'WithEvents' and 'Handles' keywords may introduce the same mess? – J Collins Dec 9 '11 at 15:31
I have the same question, I'd like to see that question answered myself... – PedroC88 Dec 9 '11 at 15:33
1  
The first snippet is definitely wrong, the panel leaks forever. The 2nd snippet is definitely right, minus the Collect call. Any events that you subscribed in the panel code for event sources that are not the panel or its children have to be unsubscribed manually. – Hans Passant Dec 9 '11 at 16:51
Having reviewed all of the descendent code, I have not implemented any 'AddHandler' methods, all events are working through the WithEvents and Handles keywords, which I expect, at least in most normal cases, to unsubscribe themselves automatically. I suppose there must be a spurious reference somewhere, just haven't got a good tool to find it with. – J Collins Dec 9 '11 at 18:01
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.