What I want to achieve is my tab strip being placed at the bottom, but with the next not rotated 180 degrees.
I set it to the bottom in my XAML like this
TabStripPlacement="Bottom"
and I have this code in my style
Which is the code that rotates the text 180 degrees. If I take that line out, the header completely disappears. If I change it to something as small as Angle="10" it'll show up as rotated 10 degrees. If I change Angle="0" it's gone again. I've tried doing a TranslateTransform on the Y axis to see if maybe it was just being drawn off the screen and I could get it to at least show back up somewhere, but that didn't work either. Any advice?
I set it to the bottom in my XAML like this
TabStripPlacement="Bottom"
and I have this code in my style
<
Trigger
Property
=
"TabStripPlacement"
Value
=
"Bottom"
>
<
Setter
Property
=
"telerik:RadDockPanel.Dock"
Value
=
"Bottom"
TargetName
=
"HeaderDockedElement"
/>
<
Setter
Property
=
"LayoutTransform"
TargetName
=
"HeaderDockedElement"
>
<
Setter.Value
>
<
RotateTransform
Angle
=
"180"
/>
</
Setter.Value
>
</
Setter
>
<
Setter
Property
=
"BorderThickness"
Value
=
"1 1 1 0"
/>
</
Trigger
>
Which is the code that rotates the text 180 degrees. If I take that line out, the header completely disappears. If I change it to something as small as Angle="10" it'll show up as rotated 10 degrees. If I change Angle="0" it's gone again. I've tried doing a TranslateTransform on the Y axis to see if maybe it was just being drawn off the screen and I could get it to at least show back up somewhere, but that didn't work either. Any advice?