I've a simple WPF app, and I'd like to add what is known in the Win32 world as keyboard accelerators. It looks like KeyBinding is the ticket, but it requires binding to a Command object. I'm not using command objects, nor do I want to. Is there another way to get an event triggered when a ctrl-x key sequence is hit?
Then you should be looking into hooks.
http://www.codeproject.com/KB/cs/globalhook.aspx
Using global keyboard hook (WH_KEYBOARD_LL) in WPF / C#
HTH