AD
Administrator
Syncfusion Team
September 9, 2004 06:06 PM UTC
Try explicitly setting the ImageList.ImageSize.
ImageList il = new ImageList();
il.Images.Add(SystemIcons.Hand.ToBitmap());
il.ImageSize = new Size(10,10);
this.gridControl1[0,2].ImageIndex = 0;
this.gridControl1[0,2].ImageList = il;
this.gridControl1[0,2].CellType = "Static";