Hey there,
so I'm looking for a way to override the style for a ColumHeader in SfDataGrid while maintain all other properties from the default style.
For regular MS controls, this is quite easy however I struggle to find out how to achieve this with your own controls.
The documentation doesn't really help me with that as the default style is overwritten as it is:
https://help.syncfusion.com/wpf/sfdatagrid/styles-and-templates
Technically I would like to write something like this:
<Style TargetType="syncfusion:GridHeaderCellControl" x:Key="headerStyle" BasedOn={StaticResource MetroGridHeaderCellControlStyle}">
<Setter Property="FontSize" Value="20"/>
</Style>
However this way I'm getting an error that the resource couldn't be resolved. I assume because the ressources are named differently for SF controls.