Hi Guys
I know you can do this to get vertical text in a tab header:
<Window x:Class="Abodemploy.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="300"> <Grid> <TabControl Margin="0" Name="tabControl1" FlowDirection="LeftToRight" TabStripPlacement="Left"> <TabItem> <TabItem.Header> <StackPanel Orientation="Horizontal"> <TextBlock>Homes</TextBlock> </StackPanel> </TabItem.Header> <TabItem.LayoutTransform> <TransformGroup> <RotateTransform Angle="90" /> </TransformGroup> </TabItem.LayoutTransform> <Grid /> </TabItem> </TabControl> </Grid> </Window>
However the text letters are sideways. What I'd like (if possible) is for the letter orientation to be correct (ie upwards), but the text flow downwards, is this possible, or am I just dreaming the impossible dream?
Thanks Psy