This seems like a no-brainer but i just can't see how to do it.
The default background color of a selected row in DataGrid is so dark that I can't read it. Is there anyway of overriding it?
Tried this (modified from Neverminds link)
<dg:DataGrid.RowStyle>
<Style TargetType="{x:Type dg:DataGridRow}">
<Style.Triggers>
<Trigger Property="IsSelected" Value="True" >
<Setter Property="Background" Value="Gainsboro" />
</Trigger>
</Style.Triggers>
</Style>
</dg:DataGrid.RowStyle>
But still nothing...