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
20
disable BackgroundHover
posted

Hello all,

xamDatagrid rows are highlited when the user mouses over them by default (BackgroundHover property is enabled by default). I want to disable this feature but can't figure out how? any help is much appreciated.

 Thank you

  • 85
    posted

    Hi zejli_amine,

    try this...

     

    <igDP:XamDataGrid>         
    .
    .
    .

    <igDP:XamDataGrid.Resources>
    <Style TargetType="{x:Type igDP:DataRecordCellArea}">
    <Setter Property="BackgroundHover" Value="Transparent"/>
    </Style>
    </igDP:XamDataGrid.Resources>
    .
    .
    .

    </igDP:XamDataGrid>
     -JD-