vote up 3 vote down star
2

The WPF control WindowsFormsHost inherits from IDisposable.

If I have a complex WPF visual tree containing some of the above controls what event or method can I use to call IDispose during shutdown?

flag

67% accept rate
When you say 'during shutdown' do you mean the app is being closed? The control is no longer visible? A dialog is being closed? – Todd White Nov 1 '08 at 2:56
Here I mean application shutdown, but I am also interested in the dialog closing case. – morechilli Nov 1 '08 at 17:12

4 Answers

vote up 0 vote down

WPF Controls don't implement the IDisposable interface, because they have nothing to dispose (No handles to clean up, no unmanaged memory to release). All you need to do is make sure that you don't have any references to the controls and the GC will clean them.

Therefore WPF employs weak event patterns to ensure that controls can be garbage collected. This is the pattern you need to implement to ensure clean-up, not IDisposable.

link|flag
Normally you are correct - however there are exceptions - as an example WindowsFormsHost is a WPF control and does implement IDisposable. It does have an hwnd to dispose as it hosts winforms controls. – morechilli Nov 13 '08 at 12:53
If you have something to dispose then implement IDisposable, if you don't then don't. But don't implement it until you do. – Pop Catalin Nov 13 '08 at 16:36
vote up 0 vote down check

Building from Todd's answer I came up with this generic solution for any WPF control that is hosted by a Window and want's to guarantee disposal when that window is closed.

(Obviously if you can avoid inheriting from IDisposable do, but sometimes you just can't)

Dispose is called when the the first parent window in the hierarchy is closed.

(Possible improvement - change the event handling to use the weak pattern)

public partial class MyCustomControl : IDisposable
    {

        public MyCustomControl() {
            InitializeComponent();

            Loaded += delegate(object sender, RoutedEventArgs e) {
                System.Windows.Window parent_window = Window.GetWindow(this);
                if (parent_window != null) {
                    parent_window.Closed += delegate(object sender2, EventArgs e2) {
                        Dispose();
                    };
                }
            };

            ...

        }

        ...
    }
link|flag
Question: what do you do in the dispose method? – Pop Catalin Nov 3 '08 at 23:37
depends on the control - normally you don't have anything but unfortunately there are special cases see my comment on your answer – morechilli Nov 13 '08 at 12:55
vote up 3 vote down

In the case of application shutdown there is nothing you need to do to properly dispose of the WindowsFormsHost. Since it derives from HwndHost disposing is handled when the Dispatcher is shutdown. If you use Reflector you will see that when HwndHost is initialized it creates a WeakEventDispatcherShutdown.

If you are using it in a dialog the best I can suggest is to override OnClosed and dispose of your Host then, otherwise the HwndHost will hang around until until the Dispatcher is shutdown.

public partial class Dialog : Window
{
    public Dialog()
    {
    	InitializeComponent();
    }

    protected override void OnClosed(EventArgs e)
    {
    	if (host != null)
    	    host.Dispose();

    	base.OnClosed(e);
    }
}

A simple way to test when dispose gets called is to derive a custom class from WindowsFormsHost and play around with different situations. Put a break point in dispose and see when it gets called.

public class CustomWindowsFormsHost : WindowsFormsHost
{
    protected override void Dispose(bool disposing)
    {
    	base.Dispose(disposing);
    }
}
link|flag
Thx sounds good.So for a windowsformshost control with app. lifetime I can rely on hwdhost hooking to the dispatcher shutdown event,for a dialog I could write a similar hook in my control to the onclosed event of the dialog window and I can copy both these patterns for a generic IDisposable control. – morechilli Nov 3 '08 at 1:10
vote up 0 vote down

You don't need to dispose controls when closing a form, the API will do it for you automatically if the control is in the visual tree of the form ( as a child of the form or other control in the form)

link|flag
My WFH is a child of another WPF control in a tree that includes the main wpf window. Dispose on the WFH is never called. – morechilli Nov 1 '08 at 0:50
When Dispose is called on the main wpf window, all of its children will be disposed of (and so on). Your WFH control should be disposed of at that time without any extra work on your part. – Sean Reilly Nov 2 '08 at 5:20
Given that neither the wpf application class nor the wpf window class inherits from IDisposable that seems unlikely - I believe wpf is immune from the need to dispose until you pull in winforms. – morechilli Nov 2 '08 at 16:48

Your Answer

Get an OpenID
or

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