What am I forgetting here?
<ComboBox ItemsSource="{Binding MyList} SelectionChanged="Selector_OnSelectionChanged"/>
<TextBlock Text="{Binding SelectedItem}"/>
<MyControl DataContext="{Binding SelectedItem}" />
Changing the selectedItem updates the testBlock but does not fire DataContextChanged event in my control. It does fire the event on the first selction, but not any subsequent selections.