I am using DevExpress ComboBoxEdit and I need to bind list to its datasource. But as I can see there is no method to add datasource to control, so I added each item to control one by one like
foreach (var item in list) {
comboBoxEdit1.Properties.Items.Add(item);
}
It worked for but it is slow if there is lot of data.
Is there a way where I can bind list directly to control?