Set the ItemsSource and SelectedItemsOverride to the same List of items :
_checkComboBox.ItemsSource = myList;
_checkComboBox.SelectedItemsOverride = myList;
↧