I want to handle the TabControl's SelectionChanged event in one of its child TabItems only. How can I do this?
I've tried
<TabControl Name="tbcTab">
<TabItem Selector.SelectionChanged="tbcTab_SelectionChanged"/>
....
and it doesn't work. TabItem doesn't seem to have any other way of knowing when it's become the selected one.