我正在使用Windows Phone 8.1 app,我无法更改Pivot文本标题颜色。
我在我的枢轴部分使用了下面的代码,但是在这里我不能在文本块中使用多色。
<Pivot.HeaderTemplate>
<DataTemplate>
<Grid Height="40">
<TextBlock Text="{Binding}"
Foreground="Black"
FontSize="28"
VerticalAlignment="Bottom"/>
</Grid>
</DataTemplate>
</Pivot.HeaderTemplate>
注意:我需要一个Windows Phone 8.1解决方案,我也想更改文本颜色而不是背景颜色。