我有点麻烦。我希望我的页面通过文本框内的文本最大化,但只能通过文本框的边框使其最大化。谁能帮我?
正确处理这一点非常重要。我必须让最左边的像素与旋转文本中最右边的像素一样远离边框。
我在底部发布了“第一行”的 XAML 代码,“另一行”的代码只是固定的大小和位置,所以我把那部分删掉了。
<Viewbox Height="3000" HorizontalAlignment="Stretch" VerticalAlignment="Bottom" Width="Auto">
<TextBox Text="First line" BorderThickness="0" VerticalContentAlignment="Bottom" >
<TextBox.LayoutTransform>
<RotateTransform Angle="-35"/>
</TextBox.LayoutTransform>
</TextBox>
</Viewbox>