combo box items are not going up/down from keyboard arrow keys.
WPF
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, I have a combo box and keyboard shortcut to it. When I use keyboard shortcut to access this combo box, focus is moving combo box but its items are not moving up/down with the help of arrow keys.. Following is my xaml.. <Label Content="Security _Level:" VerticalAlignment="Center" Target="{Binding ElementName=securityLevelCombo}" /> <ComboBox Grid.Column="1" x:Name="securityLevelCombo" Margin="8,0,0,0" IsReadOnly="True" VerticalAlignment="Center" SelectionChanged="securityLevelCombo_SelectionChanged"/> Please help.. Thanks