我有一个 WPF 组合框......这是不可编辑的。当我进入此组合框时...我有一个样式设置器 ( <Setter Property="IsDropDownOpen" Value="True"/>
) 来打开组合框。但是当我再次选项卡时..焦点移动到打开的组合框中的下一个项目....它在那里循环。我无法选择下一个控件。
这里有什么问题?
谢谢
我有一个 WPF 组合框......这是不可编辑的。当我进入此组合框时...我有一个样式设置器 ( <Setter Property="IsDropDownOpen" Value="True"/>
) 来打开组合框。但是当我再次选项卡时..焦点移动到打开的组合框中的下一个项目....它在那里循环。我无法选择下一个控件。
这里有什么问题?
谢谢
尝试 :
<Style TargetType="{x:Type ComboBoxItem}">
<Setter Property="IsTabStop" Value="False"/>
</Style>
或者
使用 KeyboardNavigation :
不推荐,但工作...
<Grid>
<ComboBox Grid.Row="1" Margin="0,0,0,0" Name="comboBox1" HorizontalAlignment="Left" Width="120" Height="20" IsEditable="False" KeyDown="comboBox1_KeyDown" GotKeyboardFocus="comboBox1_GotKeyboardFocus" >
<ComboBox.Style>
<Style TargetType="{x:Type ComboBox}">
<Style.Triggers>
<Trigger Property="IsKeyboardFocusWithin" Value="True">
<Setter Property="IsDropDownOpen" Value="True" />
</Trigger>
</Style.Triggers>
</Style>
</ComboBox.Style>
<ComboBoxItem>Male</ComboBoxItem>
<ComboBoxItem>Female</ComboBoxItem>
<ComboBoxItem>Unknown</ComboBoxItem>
</ComboBox>
</Grid>
private void comboBox1_KeyDown(object sender, KeyEventArgs e)
{
ComboBox cb = sender as ComboBox;
if (e.Key == Key.Tab && cb.IsDropDownOpen)
{
ComboBoxItem item = FocusManager.GetFocusedElement(Window.GetWindow(this)) as ComboBoxItem;
cb.SelectedItem = item;
cb.IsDropDownOpen = false;
e.Handled = true;
}
}
private void comboBox1_GotKeyboardFocus(object sender, KeyboardFocusChangedEventArgs e)
{
ComboBox cb = sender as ComboBox;
cb.IsDropDownOpen = true;
}
您可以通过以下代码实现相同的目的:-
private void comboBox1_KeyDown(object sender, KeyEventArgs e)
{
if (e.Key == Key.Enter)
{
IsDropDownOpen = true;
e.Handled = true;
}
}
现在,当焦点设置在 ComboBox 上时,您需要按 Enter 键打开下拉菜单,您可以使用 down 关键字遍历 ComboBox 项目。要移动到下一个控件,您需要按 Tab。
我有同样的问题,在 XAML 中这样解决:
<Style x:Key="RadComboBoxItemStyle" TargetType="telerik:RadComboBoxItem">
<Setter Property="Focusable"
Value="False" />
<Setter Property="IsHitTestVisible"
Value="True" />