请参:http://www.syncfusion.com/FAQ/WinForms/FAQ_c44c.asp#q480q

解决方案 »

  1.   

    假定插入一个COMBOX comPrV
    dataGrid1.Controls.Add(comPrv);
    comPrv.Location=this.dataGrid1.GetCellBounds(0,0).Location;
    this.comPrv.DataSource=mySet.Tables["Table"];
    this.comPrv.DisplayMember="prov_name";
    this.comPrv.ValueMember="prov_code";
    //this.comPrv.Text="省名";
    this.comPrv.BackColor=Color.LightSteelBlue;
    dataGrid1.PreferredRowHeight=this.comPrv.Height;
      

  2.   

    非常感谢jq_wen(quan)和2002pine() 的热情解答,我结贴时只有2002pine() 的答案,很抱歉没看到jq_wen(quan),下次早点来? :>
    再次感谢两位