Hi everyone, I have a problem with WPF ComboBox, look at the code
<ComboBox x:Name="comboBox" Width="100" IsReadOnly="True" IsEditable="True" IsTextSearchEnabled="True"> <ComboBoxItem>dsf gd</ComboBoxItem> <ComboBoxItem>asf gd</ComboBoxItem> <ComboBoxItem>dsf gd</ComboBoxItem> <ComboBoxItem>hsf gd</ComboBoxItem> </ComboBox>
Demand
is that the text in ComboBox can be selected, text search in the key file with the first entry, and comboBox must be editable. I set the properties
IsReadOnly="True" IsEditable="True"
but text search does not work. Help me solve this problem, please. Thanks in advance.
source share