WP8.1中的Pivot标题文本颜色

时间:2015-08-14 13:06:41

标签: windows-phone-8

我正在使用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解决方案,我也想更改文本颜色而不是背景颜色。

1 个答案:

答案 0 :(得分:0)

如果你想在每个文本框中看到不同的颜色,你必须使用转换器

How to highlight dates in a TextBlock MVVM Light