0
我有ComboBoxEdit填充數據,我想把它放到列。在GridView Cell中Devexpress ComboBoxEdit
ComboBoxEdit cbe = new ComboBoxEdit();
DataTable dt = Getdt();
cbe.Properties.Items.Clear();
foreach(DataRow item in dt.Rows)
{
cbe.Properties.Items.Add(item);
}
//ElementsEdit ee
ee.gvView.Columns[ColumnName].ColumnEdit = cbeMaterialy;
它不起作用。任何幫助讚賞;)
PS。我如何將完整的DataTable分配給ComboBoxEdit。