c# - Programmatically Checking DevExpress CheckedComboBoxEdit Items - Stack Overflow

PHOTO EMBED

Thu Oct 26 2023 22:08:16 GMT+0000 (Coordinated Universal Time)

Saved by @amman

string str = "first;second";
string[] array = str.Split(';');
char separator = checkedComboBoxEdit1.Properties.SeparatorChar;
string result = string.Empty; 
foreach (var element in array){
   result += element + separator;
}

checkedComboBoxEdit1.SetEditValue(result);
content_copyCOPY

https://stackoverflow.com/questions/10902252/programmatically-checking-devexpress-checkedcomboboxedit-items