I have a WPF UserControl that contains a ComboBox. I need to attach an event listener to the ComboBox.Items collection.

public MyUserControl()
{
    InitializeComponent();

    ((INotifyCollectionChanged)comboBox.Items).CollectionChanged +=
        ComboBoxItemsChanged;
}

But I cant seem to figure out how to detach it. Or is that handled automatically when the entire control is garbage collected?

link|improve this question

It is perhaps not a bad question, but the intent is dubious. What are you trying to do that you can't do through bindings and/or triggers? – Jay Aug 25 '10 at 10:07
@Jay: I want the ComboBox to autoselect the first value when the ItemsSource property is set if, and only if, Items.Count == 1 && SelectedItem == null; – mizipzor Aug 25 '10 at 10:22
Are you using MVVM or any other presentation pattern? – Jay Aug 25 '10 at 10:29
feedback

1 Answer

up vote 0 down vote accepted

Implement IDisposable interface and detach event handler in Dispose method

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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