Hi,
Here's a solution :
Here's a solution :
List<string> listOfItems = new List<string>() { "abc", "def", "ghi", "jkl" };
List<string> selectedItems = new List<string>() { listOfItems[0], listOfItems[2] };
_checkComboBox.ItemsSource = listOfItems;
_checkComboBox.SelectedItemsOverride = selectedItems;