public NativeHotKey(IntPtr hWnd, ModKeyFlags modKey, System.Windows.Forms.Keys key) { this.hWnd = hWnd; this.lParam = new IntPtr((int)modKey | ((int)key * 0x10000)); NativeMethods.RegisterHotKey(hWnd, WindowsMessage.WM_HOTKEY, modKey, key); }
public static extern int RegisterHotKey(IntPtr hWnd, WindowsMessage id, ModKeyFlags modKey, System.Windows.Forms.Keys key);