I need to change style for the XamlGrid row. I used following template:
<Style TargetType="{x:Type igDP:DataRecordCellArea}"> <Setter Property="BorderBrush" Value="Navy" /> <Setter Property="CornerRadius" Value="10"/> <Setter Property="Margin" Value="1"/> <Setter Property="BorderThickness" Value="2"/> </Style>
But the CornerRadius for "DataRecordCellArea" effective only when the mouse
is over. How to set CornerRadius for non selected/non mouse over rows?