When using the Office Black theme the tabs in the xmlTabControl have a gap inbetween them. How can i resize/remove this gap?
I've dug down with Snoop but I can't figure out where the width between the tabs is set.
Thanks,
Jamie
Hi Alex,
Thanks for the quick reply... Your suggest does remove the spacing between the tabs but it also seems to remove the styling from the tabs altogether.
Hello Jamie,
I believe this is because when the theme is Office2kBlack, the XamTabControls uses Padding and the TabItemEx elements have margin set. You can create styles for them and set these properties:
<Style TargetType="{x:Type igWindows:XamTabControl}">
<Setter Property="Padding" Value="0"/>
</Style>
<Style TargetType="{x:Type igWindows:TabItemEx}">
<Setter Property="Margin" Value="0"/>