我想更改 Pivot 项目的标题颜色以匹配主题颜色。但我也想在某些情况下将其更改回默认颜色(黑色或白色取决于设置中的背景设置)。我该怎么做。赞赏!
<phone:PivotItem x:Name="pivot_vip">
<phone:PivotItem.Header>
<TextBlock Text="{Binding Path=LocalizedResources.Artists, Source={StaticResource LocalizedStrings}}"/>
</phone:PivotItem.Header>
private void View_selection_changed(
...
PivotItem currentItem = e.AddedItems[0] as PivotItem;
if (currentItem != null)
{
if (current_view == HanlderType.EVIPHandler)
{
(currentItem.Header as TextBlock).Foreground = ??? //Theme color
}
else
{
(currentItem.Header as TextBlock).Foreground = **???** //whatever default
}
}