MaterialDesignInXamlToolkit
MaterialDesignInXamlToolkit copied to clipboard
BUG: Missing Background styling in x:Type GridViewColumnHeader
The GridViewColumnHeader override the default style but not use the Background property in the Template. This prevents styling of the header's Background.
Please add the following:
Background={Template Binding Background}
to the HeaderBorder:
<Border Name="HeaderBorder" Padding="{TemplateBinding Padding}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}">
This solves the problem and allows Background changes to the GridViewColumnHeader.
Regards, Christoph
Feel free to submit a pull request if you think this is the solution