Is It Possible to Add Multiple Repository Items in a Gridview Cells using DEVEXPRESS?
问题 I have Datatable and I have to add Two repository items to same cell DataTable dtbl = null; public Form1() { InitializeComponent(); dtbl = new DataTable(); dtbl.Columns.Add("T1"); dtbl.Columns.Add("T2"); dtbl.Columns.Add("T3"); dtbl.Rows.Add("Test1", "Test2", "Test3"); dtbl.Rows.Add("Test4", "Test5", "Test6"); dtbl.Rows.Add("Test7", "Test8", "Test9"); gridControl1.DataSource = dtbl.DefaultView; gridView1.CustomRowCellEdit += new DevExpress.XtraGrid.Views.Grid.CustomRowCellEditEventHandler