Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
130
XamDataGrid - Change Selected row/Active row's color from blue to custom color
posted

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.

Parents
  • 9836
    posted

    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.

Reply Children
No Data