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
1150
How to style XamGrid selected/active row ?
posted

Hello,

I styled the cells of a XamGrid to display a gradient background without any border lines using this XAML code:

<Style x:Key="GridCellStyle" TargetType="ig:CellControl">
  <Setter Property="Background" Value="{StaticResource GridRowBackgroundBrush}" />
  <Setter Property="BorderThickness" Value="0" />
</Style>

<ig:XamGrid CellStyle="{StaticResource GridCellStyle}">

This is working fine.
But I could not find a way to style the selected active row. How to do this?
When I select a row, it turns blue and the cell borders are visible again... 

Thanks.