I'm currently looking at the UWP CommunityToolkit DataGrid. I've been through the docs, but I'm not finding them clear on how to apply a ColumnHeaderStyle. I'm not sure what I should be targeting in the column header to set my style. I'm wishing to change the background and foreground colors. I would also like these properties to apply across the whole header, not just individual columns.
<controls:DataGrid.ColumnHeaderStyle>
<Style TargetType="">
<Setter Property="" Value=""/>
</Style>
</controls:DataGrid.ColumnHeaderStyle>
ColumnHeaderStyle
of theDataGrid
. What you need to change depends on what customization/styling you need, better to give more info on the styling you need so that I can help you with some code snippet. – CordingDataGridColumnHeaderBackgroundBrush
andDataGridColumnHeaderForegroundBrush
for changing header background and foreground. – Cording