2

使用以下代码,文本 ABCDE 从网格顶部开始,并将字母放在网格之外。

我怎样才能使文本保持在网格内并且最后一个字母在网格的顶部结束?

<Window x:Class="WpfApplication1.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>
        <TextBlock Text="ABCDE"  >
                <TextBlock.RenderTransform>
                    <RotateTransform Angle="-90" />
                </TextBlock.RenderTransform>
        </TextBlock>
    </Grid>
</Window>
4

1 回答 1

3

使用 aLayoutTransform而不是 aRenderTransform

LayoutTransform在布局过程中应用,而不是渲染过程

<TextBlock Text="ABCDE"  >
    <TextBlock.LayoutTransform>
        <RotateTransform Angle="-90" />
    </TextBlock.LayoutTransform>
</TextBlock>
于 2012-04-10T18:14:07.563 回答