I have a XamTablControl with three TabItemEx. I have set the TabStripPlacement = "Left". I need to align the header text to be vertical. By default, it is horizontal.
Can you suggest how best to accomplish this
Hi CR,
Probably the best way would be to use the HeaderTemplate on the TabItemEx and apply a LayoutTransform to rotate it.
<igWindows:TabItemEx.HeaderTemplate> <DataTemplate> <TextBlock Text="{Binding}"> <TextBlock.LayoutTransform> <RotateTransform Angle="-90"/> </TextBlock.LayoutTransform> </TextBlock> </DataTemplate> </igWindows:TabItemEx.HeaderTemplate>
Excellent.
This works.