Hello,
I'm trying to binding the TabControlExt.SelectedItem to my property in my viewmodel but if I add a new tab or select an existing tab the SelectedItem isn't update.
My Xaml is this:
<sync:TabControlExt ItemsSource="{Binding Path=Items}"
CloseButtonType="Hide"
ItemTemplate="{StaticResource CustomHeaderTemplate}"
SelectedItem="{Binding Path=ItemSelected, Mode=TwoWay}"/>
How can I do?