New to Telerik UI for WinFormsStart 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

WinForms RadMultiColumnComboBox Unbound mode

See Also

In this article
See Also
Not finding the help you need?
Contact Support