This Expander is vertical. The Header displays as Hightlight
I want
H
i
g
h
l
i
g
h
t
How do it get that?
<Expander Grid.Row="0" Grid.Column="1" HorizontalAlignment="Right"
VerticalAlignment="Stretch" Header="Highlight"
ExpandDirection="Left" IsExpanded="False" Width="Auto">
And the solution is
<Expander Grid.Row="0" Grid.Column="1" HorizontalAlignment="Right" VerticalAlignment="Stretch" ExpandDirection="Left" IsExpanded="False" Width="Auto">
<Expander.Header>
<TextBlock><ItemsControl ItemsSource="Highlight" /></TextBlock>
</Expander.Header>
HB if you want to post it as as an answer I will accept it.