How I change XamGrid Row background. I try to use
<Style x:Key="cellStyle" TargetType="ig:CellControl"> <Setter Property="Background" Value="#E7EFFF"/></Style>
....
<ig:TextColumn Key="Abbreviation" HorizontalContentAlignment="Right" HeaderTextHorizontalAlignment="Right" HeaderText="" IsSummable="False" CellStyle="{StaticResource cellStyle}">
Hello razib_sohel,
Are you trying to remove the alternate row coloring? If so, you can set IsAlternateRowsEnabled to False on the XamDataGrid.
For more information, please refer to this help topic.
Elizabeth AlbertLocalization Engineer
Thanks Elizabeth. It works :)