Unable to catch Key.Down in a combox with applied style
WPF
1
Posts
1
Posters
0
Views
1
Watching
-
Hi I use a ComboBox style (the style from msdn example), but I customized it to replace the standard popup with a datagrid. The problem I have is I can't catch Key.Down with the event handler PreviewKeyDown. The comboBox is defined with the style described. It has to do with the template style applied on the comboBox. Somehow the keydown is caught by the combobox, because I see for few ms the ItemBinding path in the textBox, but it is not caught in the code. I have tried also to put in style somthing like with no success.
any ideas how to solve it? Is it possible to use my comboBox declared in xaml and override OnPreviewKeyDown in the code behind?