I want to create a control template for a TabItemEx.
<Style TargetType="igC:TabItemEx">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="igC:TabItemEx">
<Border ... />
<ContentPresenter ContentSource="Header" ... />
</ControlTemplate>
</Style>
Everything works fine except that I am not able to include the tab closing button in my new template.It almost look like I am missing a "PART_?" declaration except that I do not know which one?
Thank you,
Radu
Hello Radu,
Yes, this is correct. You can see the default style in the DefaultStyles directory in the Infragistics folder and retemplate the TabItemEx using the full style.
Hope this helps