<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type sf:TabItemExt}">
<Grid>
<Grid>
<Border
Padding="{TemplateBinding Padding}"
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
CornerRadius="5" />
</Grid>
<Border
Padding="{TemplateBinding Padding}"
BorderThickness="{TemplateBinding BorderThickness}">
<ContentPresenter
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
ContentSource="Header" />
</Border>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
Hi, i need a little help regarding TabControlExt, i am using the above template for tabitem but the close button is not shown, How? Even though i have enabled the CloseButtonType="Both".