I want to use MVVM in an application where the different pages are TabItems.
For this I use an observable collection of my view models (Items) and bind it to the tabcont
Maybe you could try something like this -
<TabControl> <TabControl.ItemContainerStyle> <Style TargetType="{x:Type TabItem}"> <Setter Property="IsEnabled" Value="{Binding IsEnabled}"/> </Style> </TabControl.ItemContainerStyle> </TabControl>