tags:

views:

36

answers:

1

There is standard functionality for shortcuts which are Modifiers + Key, which is quite easy to implement, but is there a way to easely (using standard libraries) implement shortcuts like Ctrl + K, C (Holding Ctrl press K and then C). Something like keyboard gestures, but I haven't found.

+3  A: 

No, nothing built-in. However, for WPF, Kent Boogaart recently had a very nice blog post with a solution.

wekempf