<ListView
ItemsSource="{Binding Messages}"
Grid.ColumnSpan="2"
HeightRequest="100">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<ViewCell.View>
<StackLayout>
<Label
Text="{Binding When}"
XAlign="Center"/>
<StackLayout
BackgroundColor="Gray"
Orientation="Vertical"
VerticalOptions="Center">
<Label
Text="{Binding Message}"
XAlign="Start"/>
<Label
Text="{Binding Sender}"
XAlign="Start"
TextColor="Red"/>
</StackLayout>
</StackLayout>
</ViewCell.View>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
我在Xamarin.Forms应用程序中渲染自定义ListView。 StackLayout
包含两个Label
s(已绑定“消息”和“发件人”),目前只显示一个子节点。使用上面的代码,它只显示“消息”。如果我将代码更改为
<StackLayout
BackgroundColor="Gray"
Orientation="Vertical"
VerticalOptions="Center">
<Label
Text="{Binding Sender}"
XAlign="Start"
TextColor="Red"/>
<Label
Text="{Binding Message}"
XAlign="Start"/>
</StackLayout>
它只显示发件人。简而言之,它只显示第一个孩子。我在这做错了什么?
答案 0 :(得分:8)
问题类似于@Grisha所指出的。事实证明RowHeight较小,第二个StackLayout被修剪了。
解决方案是将HasUnevenRows
的{{1}}属性设置为ListView
。因此,TRUE
是自动计算的。