使用Fontsize,FontAttributes和Horizo​​ntalOptions时出现未处理的异常错误

时间:2015-12-07 01:23:09

标签: xaml xamarin xamarin.forms

以下代码因某些原因而中断,但当我删除FontSize =" Large" FontAttributes ="粗体"          Horizo​​ntalOptions ="中心",它工作正常。它抛出一个未处理的异常,我无法部署到模拟器。为什么呢?

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

1 个答案:

答案 0 :(得分:2)

FontAttributes,FontSize和Horizo​​ntalOptions不是TextCell的属性。如果您想进一步自定义它,您需要转到ViewCell。