如何使用TextLineBounds
在文本块中拉伸文本,就像在UWP中一样 <Viewbox Stretch="Uniform">
<TextBlock Foreground="Black" TextLineBounds="Tight">
123
</TextBlock>
</Viewbox>
在WPF中
<Viewbox Stretch="Uniform">
<TextBlock Foreground="Black">
123
</TextBlock>
</Viewbox>