我正在开发 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>
有没有办法做到这一点?