我有一个带有 itemtemplate 的列表视图:
<ListView x:Name="messages" HorizontalAlignment="Left"
Background="{x:Null}" BorderBrush="{x:Null}" Foreground="Black">
<ListView.ItemTemplate>
<DataTemplate>
<TextBlock Style="{DynamicResource h3}" Text="{Binding}"
Margin="10" MaxWidth="850"/>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
此列表视图位于垂直堆栈面板中。所以它的宽度与堆栈面板的宽度相同。
列表视图必须显示可能很长的消息。我试图确保当消息对于可用宽度来说太长时,文本块会获得额外的高度,并且文本会显示在 2 行上。
我可以用谷歌搜索很多方法来实现固定高度,但由于我事先不知道我是否需要超过 1 行,所以我想确保它自动发生。我不希望每个项目只有在需要时才具有 2 行的高度。
我怎样才能做到这一点?