如何在Y轴上旋转矩形,CompositeTransform和Rotate Transform只有X轴旋转方法?
答案 0 :(得分:0)
使用Projection属性并指定PlanarProjection值。当你在Blend中编辑它时,它是漂亮的正面和中心。
编辑*示例
<TextBlock
Text="Hello"
FontSize="96"
HorizontalAlignment="Center"
VerticalAlignment="Center">
<TextBlock.Projection>
<PlaneProjection
RotationY="45"/>
</TextBlock.Projection>
</TextBlock>