I am using the Xaml data grid with the Office2k7Blue theme, but I find the selected item color really hard to see.
How do I override the background color for the selected items?
I thought it would be somewhere in FieldLayoutSettings but I can't seem to find it.
Thanks,
Robson
Nevermind, I figured it out
x:Name="ResultSetDataGrid"
IsGroupByAreaExpanded="True"
Theme="Office2k7Blue"
>
<Style TargetType="{x:Type igDP:DataRecordCellArea}">
<Setter.Value>
<GradientStop Color="#FF2225FF" Offset="0"/>
</LinearGradientBrush>
</Setter>
<GradientStop Color="#FF220000" Offset="0"/>
<GradientStop Color="#FF002500" Offset="0"/>
</Style>
</igDP:XamDataGrid.Resources>