I have a ComboBox and I would like to allow typing and to display in the TextBox only what was typed. so I used IsEditable="True"
The problem is that the autocompelete kicks in and completes the text to one of the items.
for example:
<ComboBox IsEditable="True">
<ComboBoxItem>ABC</ComboBoxItem>
<ComboBoxItem>PPP</ComboBoxItem>
<ComboBoxItem>QQQ</ComboBoxItem>
<ComboBoxItem>NNN</ComboBoxItem>
</ComboBox>
When I type 'A' I get 'ABC' in the TextBox where the 'BC' is highlighted (and I would like to get only 'A')
<ComboBox IsTextSearchEnabled="false" ... />
c1ComboBox1.AutoComplete = false;
or
<c1:C1ComboBox HorizontalAlignment="Left" Width="249" AutoComplete="False">
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