How to prevent selection with a list of items from your list in wpf?
5 answers
According to MSDN you need
IsReadOnly = true;
IsEditable = false;
See http://msdn.microsoft.com/en-us/library/system.windows.controls.combobox.isreadonly.aspx under Remarks
Edit: actually, I'm not sure anymore
I suggest using style to set ReadOnly to true in PART_EditableTextBox
+1
source to share
Your question is not clear.
The combo box has a dependency property IsEditable and if set to false the selected item cannot be edited. By default, this value is incorrect.
If you are talking about items in a combobox popup, then it should also be "non-editable" unless you changed your combobox data template to contain a list of text boxes that will cause the list to allow everyone to edit.
-2
source to share