I have editable combobox where not always the preferred item is in the drop-down list.
I would like to have the possibility of manually entering text in the textbox which is propagated to the string bound to SelectedValue.
Right now the string bound to SelectedValue is only updated if the entered value is on of the ones in the ComboBox items.
How do I allow custom values not available in the ComboBox list to be manually entered and properly propagated to bound value?
Setting the binding to Text property of Combo will suffice as well.
I was just doing this yesterday and today and it looks like the following:
set the combobox
IsEditable="true"
instead of binding to
SelectedItem
, bind to theText
property of the comboboxif you're binding to a custom object instead of just strings, you need to also set
TextSearch.TextPath="NameOfField"
. This lets the text search behavior work, and also shows this property in the textbox as well.All in all, I ended up with something like: