我在开发Xamarin表单应用程序。当我绑定包含多个项目的列表时,仅显示列表的第1项和第1项的一部分以及一些字符也缺失。 Xaml在
之下<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MCITest.View.IndividualTimeTrackingPage">
<ContentPage.Content>
<StackLayout HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" >
<Button x:Name ="Btn_BadgeINBadgeOut" Text="" Clicked="BadgeInBadgeOutClick" VerticalOptions="StartAndExpand"
HorizontalOptions="CenterAndExpand"/>
<ListView x:Name="listViewTimeActions" >
<ListView.ItemTemplate>
<DataTemplate>
<TextCell Text="{Binding ActionWithTime}" TextColor="White" />
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackLayout>
</ContentPage.Content>
</ContentPage>
答案 0 :(得分:0)
为什么不将以下行添加到listview的Xaml:
HasUnevenRows="True" SeparatorVisibility="None" ItemsSource="{Binding yourBindingSource}"