我正在尝试在 WPF 中为Expander
创建全局样式。
这是我迄今取得的成就:
<Style TargetType="Expander">
<Setter Property="HeaderTemplate">
<Setter.Value>
<DataTemplate>
<Border Background="Red">
<ContentControl Content="{Binding}" />
</Border>
</DataTemplate>
</Setter.Value>
</Setter>
</Style>
这就是它的样子:
不太满意。
问题:如何在App.xaml中更改整个Expander
标题的背景颜色?