I want to have a button which allows the user to pick a global hotkey. I stumbled upon stackoverflow and found some ways to register a hotkey, but none which allows me to let the user pick one. Is the
I found this little piece of code to register an hotkey: [DllImport(\"user32.dll\")] public static extern bool RegisterHotKey(IntPtr hWnd, int id, int fsModifiers, int vlc);
I am trying to get the user defined global hot key for my application. Here is my application code, user.rc
How would I capture the user pressing Ctrl twice (Ctrl + Ctrl) globally. I want to be able to have my application window hidden and then make it visible when the user invokes it with the CtrlCtrl key
What are RegisterHotKeys and global keyboard h开发者_如何学JAVAooks, and how do they work? I want to make a key to get focused on my application\'s Form (when it\'s minimized) and then focus on a tex