How to set/modify back color of Alternate Records in GridGroupingControl?
The BackColor property of the AlternateRecordFieldCell in the Appearance settings can be used to set or modify the border color of the Grid.
C#
//Set the color of the Alternate Records
this.GridGroupingControl1.Appearance.AlternateRecordFieldCell.BackColor = Color.Red;
VB
'Set the color of the Alternate Records
Me.GridGroupingControl1.Appearance.AlternateRecordFieldCell.BackColor = Color.Red