How do you prevent user input in a ComboBox so that only one of the items in the defined list can be selected by the user?
Set the ReadOnly attribute to true.
Or if you want the combobox to appear and display the list of "available" values, you could handle the ValueChanged event and force it back to your immutable value.