How do I set/modify color of the Group Caption Cell in GridGroupingControl?
The BackColor property of the GroupCaptionCell in the Appearance settings can be used to set or modify the color of the Group Caption Cell in the Grid.
C#
//Set the color of the Group Caption Cell
this.GridGroupingControl1.Appearance.GroupCaptionCell.BackColor = Color.Red;
VB
'Set the color of the Group Caption Cell
Me.GridGroupingControl1.Appearance.GroupCaptionCell.BackColor = Color.Red