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?
In this article we will see how we can make a combo box such that user and change the value of it by typing. By default when we create a combo box we can only choose from the option in the drop down menu although in editable combo box we can set the text by our self.
Implementation. 1. Create an XAML with two columns, name and departments, where the 'departments' column has a datatemplate of an editable combobox. The user can edit and add new items to it, as mentioned in XAML.
Advertisements. A combobox is a selection control that combines a non-editable textbox and a drop-down listbox that allows users to select an item from a list. It either displays the current selection or is empty if there is no selected item.
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 the Text
property of the combobox
if 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:
<ComboBox x:Name="c" IsEditable="True" IsTextSearchEnabled="True" IsTextSearchCaseSensitive="False" StaysOpenOnEdit="True" Text="{Binding NameOnViewModel}" TextSearch.TextPath="NameOnChildItems" ItemsSource="{Binding Items}" ItemTemplate="{StaticResource DataTemplate}" /> <TextBlock Text="{Binding ElementName=c,Path=Text}" />
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With