我有一个带有文本块和图像的堆栈面板。我需要将文本块与旋转(90度)对齐。像这样,
但是,在旋转文本块后,我总是得到这样的结果,
这是我正在使用的 XAML 代码,
<StackPanel Orientation="Horizontal">
<Image Width="120" Source="ms-appx:///Assets/mail.jpg"/>
<TextBlock Text="send mail" FontSize="15" Margin="25,0,0,0" >
<TextBlock.RenderTransform>
<RotateTransform Angle="90"/>
</TextBlock.RenderTransform>
</TextBlock>
</StackPanel>
我怎样才能将我的文本块对齐到中心..?