Is it possible to set the selected item of a combobox to be an object that is not in its dropdown list?
If yes, then what must one do?
Is it possible to set the selected item of a combobox to be an object that is not in its dropdown list?
If yes, then what must one do?
Is there a reason you cannot add it to the list after the object was generated? Is the object generated asynchronously?
myComboBox.Items.Add(newItem);