Hi Paul,
You could handle the ComboBoxExt''s DropDownCloseOnClick event as shown in the code snippet below for this purpose :
private void comboBoxExt1_DropDownCloseOnClick(object sender, Syncfusion.Windows.Forms.Tools.MouseClickCancelEventArgs args)
{
string text = "";
foreach (object obj in this.checkedListBox1.CheckedItems)
{
if (text == "")
text += obj.ToString();
else
text += ", " + obj.ToString();
}
this.comboBoxBase1.Text = text;
}
Please refer to the
complete_sample attached here that illustrates this. Let me know if this meets your requirements. We appreciate your continued interest in Syncfusion products.
Regards,
Guru Patwal
Syncfusion, Inc.