Xamarin.forms如何更改TableSection标题颜色

时间:2017-02-22 21:59:03

标签: c# xamarin.ios xamarin.android xamarin.forms portable-class-library

我正在开发 Xamarin.forms PCL项目,我正在搜索更改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>

有没有办法做到这一点?

0 个答案:

没有答案