The issue here is you have assigned the SelectedValue, Instead try assigning the SelectedItem. Also, while assigning the selected item assign it through the list.
MyComboBox.SelectedItem = Items.FirstOrDefault(i => i.Model == ModelEnum.AAA);