我知道我可以像这样旋转文本:
<TextBlock Text="4:00">
<TextBlock.RenderTransform>
<RotateTransform Angle="-90"/>
</TextBlock.RenderTransform>
</TextBlock>
但是我怎样才能使用直接喜欢的RenderTransform
属性:TextBlock
<TextBlock Text="4:00" RenderTransform="<How does this work?>"/>
避免内部代码?也许关于它如何工作的一般教程也会很好。