C# Xamarin.forms如何更改表节标题颜色

C# Xamarin.forms如何更改表节标题颜色,c#,xamarin.ios,xamarin.android,xamarin.forms,portable-class-library,C#,Xamarin.ios,Xamarin.android,Xamarin.forms,Portable Class Library,我正在从事Xamarin.formsPCL项目,我正在搜索更改TextColor以获取TableSection <TableView HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" IsVisible="false" HasUnevenRows="true"> <TableRoot> <TableSection Title="Order Info

我正在从事Xamarin.formsPCL项目,我正在搜索更改
TextColor
以获取
TableSection

<TableView HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand"  IsVisible="false" HasUnevenRows="true">
        <TableRoot>
          <TableSection Title="Order Information" >
            <ViewCell>
              <StackLayout Orientation="Horizontal">
                <Label Text="Created" TextColor="Silver" />
                <Label Text="{Binding Created}" HorizontalOptions="EndAndExpand" TextColor="Navy" />
              </StackLayout>
            </ViewCell>
    </TableSection>
        </TableRoot>
      </TableView>


有什么方法可以做到这一点吗?

您是否尝试过Xamarin论坛的解决方案,并使用自定义渲染器,如下所示:这还不够好,但我希望有人能为我们提供所有平台的解决方案我同意我正在尝试更改默认颜色,有什么想法吗?我的建议是放弃TableView!Jason Smith(来自Xamarin)在过去几年中强调了这一点,即不再使用它。您应该能够使用listview获得相同的外观,甚至可以对样式进行更多的控制。