How do I set styles for the GroupDropArea in GridGroupingControl?
You can specify the style for that area via custom css defined in the GroupDropAreaCssClass property. You can also programmatically set the GroupDropAreaCssClass property through code
[CSS]
.GroupDropAreaCss
{
background-color :#ffbeb8 ;
color:Black;
}
C#
this.GridGroupingControl1.TableDescriptor.GroupDropAreaCssClass = "GroupDropAreaCss";
VB
Me.GridGroupingControl1.TableDescriptor.GroupDropAreaCssClass = "GroupDropAreaCss"