I need to handle Ctrl+F keys combo to invoke search function inside my TabControl
.
OnKeyDown()
called for each button pressed, but how I can handle combination of two buttons?
I need to handle Ctrl+F keys combo to invoke search function inside my TabControl
.
OnKeyDown()
called for each button pressed, but how I can handle combination of two buttons?
Just put this in your xaml :
<Window.InputBindings>
<KeyBinding Command="ApplicationCommands.YourCommandToHandle"
Gesture="CTRL+F" />
</Window.InputBindings>