如何使TextBlock高度与它包含的文本数量一样大(xaml)

时间:2012-03-31 13:03:43

标签: windows-phone-7 xaml

如何使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>

1 个答案:

答案 0 :(得分:1)

除非您专门设置了height属性(或MaxHeight),否则它应该在需要时展开。您没有为文本块打开文本换行,因此它只使用一行并水平扩展。要启用换行到多行,请使用:

TextWrapping="Wrap"