ListView中的Xamarin.Forms Vertical StackLayout仅显示一个(第一个)Child

时间:2015-05-11 09:04:25

标签: xaml xamarin xamarin.forms

<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>

它只显示发件人。简而言之,它只显示第一个孩子。我在这做错了什么?

1 个答案:

答案 0 :(得分:8)

问题类似于@Grisha所指出的。事实证明RowHeight较小,第二个StackLayout被修剪了。

解决方案是将HasUnevenRows的{​​{1}}属性设置为ListView。因此,TRUE是自动计算的。