why is it that we cannot control the color of the row highlighting/in-focus row? That seems impossible to believe – that a commercial control would be delivered without an ability to customize the color of the highlighted/in-focus row.
What assembly is the DataRecordCellArea found in?
we are on 10.2
I need to override the selected row style in a grid
thanks
You could use the following style to change the default color of the selected or the active row:
<Style TargetType="{x:Type igDP:DataRecordCellArea}">
<Setter Property="BackgroundSelected" Value="Blue"/>
<Setter Property="BackgroundActive" Value="Yellow"/>
</Style>
Let me know if this is what you are looking for.