HA
haneefm
Syncfusion Team
May 15, 2007 03:40 PM UTC
Hi Christoph,
You can try the below code snippet to set a icon in a RowHeadercell.
this.gridGroupingControl1.TableDescriptor.Appearance.RowHeaderCell.CellType = "Static";
this.gridGroupingControl1.TableDescriptor.Appearance.RowHeaderCell.Themed = false;
this.gridGroupingControl1.TableDescriptor.Appearance.RowHeaderCell.ImageIndex = 0;
ImageList list = new ImageList();
list.Images.Add(SystemIcons.Question.ToBitmap());
this.gridGroupingControl1.TableDescriptor.Appearance.RowHeaderCell.ImageList = list;
Best regards,
Haneef