WPF应用程序中的全局shell钩子
本文关键字:shell 钩子 全局 应用程序 WPF | 更新日期: 2023-09-27 18:21:36
我正试图捕捉创建/销毁另一个应用程序的指定窗口的事件。为此,我设置了WM_SHELLHOOK
。
这是我的WPF应用程序中的siplified代码:
public delegate IntPtr ProcDelegate(int hookCode, IntPtr wParam, IntPtr lParam);
[DllImport("user32.dll", SetLastError = true)]
private static extern IntPtr SetWindowsHookEx(
int hookId, ProcDelegate handler, IntPtr hInstance, uint threadId);
[DllImport("kernel32.dll", SetLastError = true)]
public static extern IntPtr GetModuleHandle(string lpModuleName);
private void buttonClick(object sender, RoutedEventArgs e)
{
IntPtr hookHandler;
using (Process curProcess = Process.GetCurrentProcess())
using (ProcessModule curModule = curProcess.MainModule)
{
var moduleHandle = GetModuleHandle(curModule.ModuleName);
hookHandler = SetWindowsHookEx(
10 /*WH_SHELL*/, shellHookHandler, moduleHandle, 0);
}
if (hookHandler == IntPtr.Zero)
{
// Get here error 1428 (ERROR_HOOK_NEEDS_HMOD) -
// "Cannot set nonlocal hook without a module handle."
throw new Exception(Marshal.GetLastWin32Error().ToString());
}
}
private IntPtr shellHookHandler(int hookCode, IntPtr wParam, IntPtr lParam)
{
// Some code...
return IntPtr.Zero;
}
问题是SetWindowsHookEx
总是返回0,最后一个错误是
1428(ERROR_HOOK_NEEDS_HMOD)没有模块就无法设置非本地挂钩手柄
我看了另一个相关的问题。当我为鼠标、键盘等设置挂钩时,一切正常。
请告诉我如何修复这个错误。谢谢
挂钩的MSDN文档说:"如果应用程序为不同应用程序的线程安装挂钩过程,则该过程必须在DLL中。"
这是因为您的DLL已加载到其他应用程序的地址空间中;然后,您需要找到一些机制(例如内存映射文件)来将信息传递给主应用程序。
然而,与大多数文档(这里提到的)相反,键盘和鼠标挂钩在没有DLL的情况下工作。这就是他们为你工作的原因。