I have created a custom WPF user control which is intended to be used by a third party. My control has a private member which is disposable, and I would like to ensure that its dispose method will always get called once the containing window/application is closed. However, UserControl is not disposable. I tried implementing the IDisposable interface and subscribing to the Unloaded event but neither get called when the host application closes. If at all possible, I don't want to rely on consumers of my control remembering to call a specific Dispose method.

 public partial class MyWpfControl : UserControl
 {
     SomeDisposableObject x;

     // where does this code go?
     void Somewhere() 
     {
         if (x != null)
         {
             x.Dispose();
             x = null;
         }

     }
 }

The only solution I have found so far is to subscribe to the Dispatcher's ShutdownStarted event. Is this a reasonable approach?

this.Dispatcher.ShutdownStarted += Dispatcher_ShutdownStarted;
link|improve this question

What about the Unloaded event of user control? – akjoshi Dec 6 '10 at 13:56
1  
@akjoshi: MSDN says that: Unloaded event may not be raised at all. And it might also be triggered more than once, that is when user changes theme. – Dudu Mar 12 '11 at 12:01
feedback

4 Answers

up vote 16 down vote accepted

Interesting blog post here:

http://geekswithblogs.net/cskardon/archive/2008/06/23/dispose-of-a-wpf-usercontrol-ish.aspx

It mentions subscribing to Dispatcher_ShutDownStarted to dispose of your resources.

link|improve this answer
well I was hoping there would be a cleaner way than this, but it looks like for now this is the best to do it. – Mark Heath Sep 4 '09 at 6:41
5  
But what if the UserControl dies before the app dies? The Dispatcher will only shyt down when the app does, right? – Robert Jeppesen Nov 12 '09 at 15:21
feedback

You have to be careful using the destructor. This will get called on the GC Finalizer thread. In some cases the resources that your freeing may not like being released on a different thread from the one they were created on.

link|improve this answer
feedback

My scenario is little different, but the intent is same i would like to know when the parent window hosting my user control is closing/closed as The view(i.e my usercontrol) should invoke the presenters oncloseView to execute some functionality and perform clean up. ( well we are implementing a MVP pattern on a WPF PRISM application).

I just figured that in the Loaded event of the usercontrol, i can hook up my ParentWindowClosing method to the Parent windows Closing event. This way my Usercontrol can be aware when the Parent window is being closed and act accordingly!

link|improve this answer
feedback

An UserControl has a Destructor, why don't you use that?

~MyWpfControl()
	{
		// Dispose of any Disposable items here
	}
link|improve this answer
This doesn't seem to work. I just tried that approach and it never gets called. – JasonD Mar 10 '10 at 19:42
1  
That's not a destructor, it's a finalizer. You always implement a finalizer and Dispose as a pair otherwise you risk leaks. – Mike Post Nov 18 '10 at 21:59
And, in finalizer you should only clean up unmanaged objects but not managed objects, because finalizers are run in unspecified order in GC threads thus managed objects may be finalized earlier and their Dispose() may have thread affinity. – Dudu Mar 2 '11 at 1:45
feedback

Your Answer

 
or
required, but never shown

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