I am seeing a lot of examples on how to style Selected rows in DataGrid such as this one:
How can I set the color of a selected row in DataGrid
Can i just di
For those like me who have some cells with different styles and don't want to override all styles nor add triggers to each style, this is a good bet:
HighlightBrushKey is the highlighted border with active selection and HighlightTextBrushKey is the text color with active selection
In my case, I want inactive selection to look unselected:
InactiveSelectionHighlightBrushKey is the border when selection is inactive and InactiveSelectionHighlightTextBrushKey is the text when selection is inactive
FYI: SystemColors is a static class, part of System.Windows.Media namespace. You can inspect it and shamelessly override any color you don't like!