App.xaml中的样式扩展器标题背景颜色

时间:2015-03-04 09:39:56

标签: c# .net wpf styles expander

我正在尝试在 WPF 中为Expander创建全局样式。

这是我迄今取得的成就:

<Style TargetType="Expander">
    <Setter Property="HeaderTemplate">
        <Setter.Value>
            <DataTemplate>
                <Border Background="Red">
                    <ContentControl Content="{Binding}" />
                </Border>
            </DataTemplate>
        </Setter.Value>
    </Setter>
</Style>

这就是它的样子:

currently looking like this

不太满意。

问题:如何在App.xaml中更改整个Expander标题的背景颜色?

0 个答案:

没有答案