SetWindowsHookEx WH_KEYBOARD_LL nicht immer Ereignisse

Ich bin mit SetWindowsHookEx() erstellen Sie einen Tastatur-hook. Die Schöpfung scheint erfolgreich zu sein, aber das Verfahren, das registriert ist, wird nie genannt. Gibt es etwas, was ich falsch mache?

#region Windows API Functions Declarations

[DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
private static extern int SetWindowsHookEx(int idHook, HookProc lpfn, IntPtr hInstance, int threadId);

[DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
private static extern bool UnhookWindowsHookEx(int idHook);

[DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
private static extern int CallNextHookEx(int idHook, int nCode, IntPtr wParam, IntPtr lParam);

[DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
private static extern IntPtr GetModuleHandle(string lpModuleName);

#endregion

=

private void CreateHook()
{
   int id_hook = (int)HookType.WH_KEYBOARD_LL;
   HookProc lpfn = new HookProc(this.KeyboardHookProc);

   using (ProcessModule curModule = Process.GetCurrentProcess().MainModule)
      hHook = SetWindowsHookEx(id_hook, lpfn, GetModuleHandle(curModule.ModuleName), 0);

   if (hHook == 0)
      throw new Exception("could not start monitoring mouse events");
}

=

private int KeyboardHookProc(int code, IntPtr wParam, IntPtr lParam)
{
   if (code >= 0)
      Console.WriteLine((Keys)wParam.ToInt32());
   return CallNextHookEx(0, code, wParam, lParam);
}

=

InformationsquelleAutor Nippysaurus | 2009-11-17
Schreibe einen Kommentar