Hi all,
I want to display my TabItems vertically, like this (bottom pic):
Image
I've tried to get this effect by using RotateTransform, but that doesn't do the trick. It only rotates the content, not the TabItem-header itself.
Thanks in advance for the help,
Frances

TabItems displayed vertically
RaghavendraPrasad
Sheva
Bumper
I think you're looking for TabStripPlacement.
- Doug
praveench2k
that's exactly what I was looking for
Frances
Code:
<Style TargetType="{x:Type TabItem}">
<Setter Property="HeaderTemplate">
<Setter.Value>
<DataTemplate>
<ContentPresenter Content="{TemplateBinding Property=ContentControl.Content}">
<ContentPresenter.LayoutTransform>
<RotateTransform Angle="-90" />
</ContentPresenter.LayoutTransform>
</ContentPresenter>
</DataTemplate>
</Setter.Value>
</Setter>
</Style>