I have a WPF ComboBox and I want to go to items that start with (for example) "e" in the ComboBox when I type that letter. How?
My XAML code:
<ComboBox ItemsSource="{Binding Roles}" SelectedValuePath="Id"
ItemTemplate="{StaticResource ComboBoxDisplayName}"
SelectedItem="{Binding SelectedRole}"
Width="150"/>