我一直在努力更改与Windows 10中的Photo Application相同的数据透视表标题背景。但是,它只会更改文本(标题)的背景,我想要的是更改整个背景。
<DataTemplate x:Name="PivotHeaderTemplate">
<StackPanel Background="Red">
<TextBlock Text="{Binding Header}" Style="{StaticResource SubtitleTextBlockStyle}"/>
</StackPanel>
</DataTemplate>
如何更改pivot头的背景? 谢谢!