我有一个UserControl,可以在其中添加Combobox。我使用this。
我想按空格键时选中复选框。
我在Combobox资源上添加EventSetter
。
<ComboBox.Resources>
<Style TargetType="{x:Type ComboBoxItem}">
<EventSetter Event="PreviewKeyDown" Handler="OnPreviewKeyDown" />
</Style>
</ComboBox.Resources>
但不要提高它。
如何在ComboboxItem上引发keydown。
答案 0 :(得分:0)
尝试使用Snoop(链接到snoop:here)或XAML Spy(链接到XAML Spy:here)来了解事件的处理位置。并尝试通过行为或使用附加属性(或后面的代码)来挂钩(这里是链接:WPF - catch events even if they are already handled)。
问候。