如何使TextBlock高度变量?现在是60岁。
<Border Background="{Binding ScreenBrush}" Margin="24,0" Width="800" MinHeight="60" local:Tilt.IsEnabled="True">
<TextBlock Text="{Binding Title}" FontSize="{Binding TextSize}"
Foreground="{Binding TextBrush}" Margin="12"
VerticalAlignment="Center"/>
</Border>
答案 0 :(得分:1)
除非您专门设置了height属性(或MaxHeight),否则它应该在需要时展开。您没有为文本块打开文本换行,因此它只使用一行并水平扩展。要启用换行到多行,请使用:
TextWrapping="Wrap"