I use ApplyXmlLookAndFeel() to retrieve the appearance of GridGroupingControl,But all the cells' text become smaller......Could I contain the cells' size?
I use a big size font in GridGroupingControl,and set GridVisualStyles into Metro
this.gridGroupingControl1.Font = new System.Drawing.Font("宋体", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.gridGroupingControl1.GridVisualStyles = Syncfusion.Windows.Forms.GridVisualStyles.Metro;
XmlReader xr = new XmlTextReader("GridSchema.xml");
XmlReader xrApp = new XmlTextReader("GridLooknFeel.xml");
this.gridGroupingControl1.ApplyXmlSchema(xr);
this.gridGroupingControl1.ApplyXmlLookAndFeel(xrApp);
xr.Close();
xrApp.Close();
All the cells' text become smaller...........
Thanks !