AD
Administrator
Syncfusion Team
July 25, 2005 01:16 PM UTC
Do not set the AnyCell property. Instead try setting these properties to see if this does what you want.
this.gridGroupingControl1.BackColor = Color.Red;
this.gridGroupingControl1.Appearance.RecordFieldCell.BackColor = Color.Green;
this.gridGroupingControl1.Appearance.AlternateRecordFieldCell.BackColor = Color.Blue;
JS
John Slater
July 25, 2005 01:51 PM UTC
Worked perfectly, thanks.
>Do not set the AnyCell property. Instead try setting these properties to see if this does what you want.
>
>this.gridGroupingControl1.BackColor = Color.Red;
>this.gridGroupingControl1.Appearance.RecordFieldCell.BackColor = Color.Green;
>this.gridGroupingControl1.Appearance.AlternateRecordFieldCell.BackColor = Color.Blue;
>