以下代码因某些原因而中断,但当我删除FontSize =" Large" FontAttributes ="粗体" HorizontalOptions ="中心",它工作正常。它抛出一个未处理的异常,我无法部署到模拟器。为什么呢?
<ContentPage.Content>
<ListView x:Name="GrouppedList"
ItemsSource="{Binding Rss.channel.item}">
<ListView.ItemTemplate>
<DataTemplate>
<TextCell Text="{Binding title}" Detail="{Binding description}" FontSize="Large" FontAttributes="Bold"
HorizontalOptions="Center" />
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</ContentPage.Content>
答案 0 :(得分:2)
FontAttributes,FontSize和HorizontalOptions不是TextCell的属性。如果您想进一步自定义它,您需要转到ViewCell。