问题描述
|
我将RotateTransform应用于文本块,以便它垂直显示文本,而不是水平显示文本,但是在不转换时,它在水平方向上占据相同的空间。请提出解决方案,以消除这种水平的树皮。
<Border BorderBrush=\"#888888\" BorderThickness=\"0,2,0\">
<TextBlock FontFamily=\"Arial\" VerticalAlignment=\"Center\" HorizontalAlignment=\"Center\" FontWeight=\"Bold\" FontSize=\"15\" Text=\"Menu\" >
<TextBlock.RenderTransform>
<RotateTransform Angle=\"270\" />
</TextBlock.RenderTransform>
</TextBlock>
</Border>
解决方法
使用LayoutTranform而不是RenderTransform
<Border BorderBrush=\"#888888\" BorderThickness=\"0,2,0\">
<TextBlock FontFamily=\"Arial\" VerticalAlignment=\"Center\" HorizontalAlignment=\"Center\" FontWeight=\"Bold\" FontSize=\"15\" Text=\"Menu\" >
<TextBlock.LayoutTransform>
<RotateTransform Angle=\"270\" />
</TextBlock.LayoutTransform>
</TextBlock>
</Border>