I\'m creating a specific style for some TabControl in my application.
put style for target type TabItem as a implicit style under your MyTabItem style resource
<Style TargetType="TabControl" x:Key="TabControlStyle"> <Style.Resources> <Style TargetType="TabItem"> </Style>
<TabControl ItemContainerStyle="{StaticResource MyTabItem}"/>