I have followed the following links to create a custom combo box. I have added a list of combo box items using c#.
If I type text in the custom combo box it is not filtering the items based on the search text whether an item contains the word.
The custom combo box just listing all the items in it. I want my combo box to act like if type word it should filter the result and auto-suggest in the combo box search.
<local:FilteredComboBox x:Name="FilteredCmb" IsEditable="True"
IsTextSearchEnabled="True"
Padding="4 3"
MinWidth="200" Grid.ColumnSpan="6"
Grid.Column="2" Margin="0,77,0,49" Grid.Row="1" />
How to achieve this?
Is this possible with a Default combo box. The default combo box auto-suggests the items which start with the entered text not with checking whether the word is contained in an item.
AutoCompleteTextBox
. – user8478480