I have a style for tabcontrol :
<Style TargetType="{x:Type TabControl}" x:Key="CloseableTabControl">
<Style.Resources>
<Style TargetType="{x:Type TabItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type TabItem}">
this have effect for all tabitem contained into tabcontrol, including item of child tabcontrol.
I want that only first level tabitems have applicated the style. How I can accomplish this?