New to Telerik UI for WinForms? Start a free 30-day trial
Unbound Mode
Updated over 6 months ago
RadMultiColumnComboBox supports unbound mode allowing to add columns and rows programmatically.
Unbound mode
C#
this.radMultiColumnComboBox1.MultiColumnComboBoxElement.Columns.Add("Name");
this.radMultiColumnComboBox1.MultiColumnComboBoxElement.Columns.Add("Id");
for (int i = 0; i < 10; i++)
{
this.radMultiColumnComboBox1.EditorControl.Rows.Add("Item" + i, i);
}
Figure 1: Unbound mode
