Hello,
You can use the following Xaml markup to establish both the things :
<Style x:Key="style" TargetType="my:DataGridCellPresenter"> <Setter Property="BorderThickness" Value="2"/> <Setter Property="BorderBrush" Value="Red"/> <Setter Property="Padding" Value="2"/> </Style>
………….
<my:C1DataGrid.BottomRows> <my:DataGridSummaryRow CellStyle="{StaticResource style}"/> </my:C1DataGrid.BottomRows>
Hope it helps.
Regards,
Reema