【发布时间】:2014-09-24 15:54:05
【问题描述】:
我正在尝试让应用程序获取用户单击的窗口的鼠标单击位置和标题(名称)。我目前使用的是 LowLevelMouseProc,它提供了很好的结果,但是每当我点击 Google chrome 时它都会使应用程序崩溃。 代码如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using System.Diagnostics;
//An attempt to print the screen name of the active window and mouse coordinates at every mouse click
namespace Project1
{
class InterceptMouse
{
private static LowLevelMouseProc _proc = HookCallback;
private static IntPtr _hookID = IntPtr.Zero;
public static void Main()
{
_hookID = SetHook(_proc);
Application.Run();
UnhookWindowsHookEx(_hookID);
Application.Exit();
}
private static IntPtr SetHook(LowLevelMouseProc proc)
{
using (Process curProcess = Process.GetCurrentProcess())
using (ProcessModule curModule = curProcess.MainModule)
{
return SetWindowsHookEx(WH_MOUSE_LL, proc,
GetModuleHandle(curModule.ModuleName), 0);
}
}
private delegate IntPtr LowLevelMouseProc(int nCode, IntPtr wParam, IntPtr lParam);
private static IntPtr HookCallback(
int nCode, IntPtr wParam, IntPtr lParam)
{
int nodeCount;
LinkedListNode<StringBuilder> nodefirst = new LinkedListNode<StringBuilder>(null);
LinkedListNode<StringBuilder> nodeprev = new LinkedListNode<StringBuilder>(null);
LinkedList<StringBuilder> windowlist = new LinkedList<StringBuilder>();
if (nCode >= 0 &&
MouseMessages.WM_LBUTTONDOWN == (MouseMessages)wParam)
{
MSLLHOOKSTRUCT hookStruct = (MSLLHOOKSTRUCT)Marshal.PtrToStructure(lParam, typeof(MSLLHOOKSTRUCT));
Console.WriteLine(hookStruct.pt.x + ", " + hookStruct.pt.y);
IntPtr hwnd = GetForegroundWindow();
StringBuilder windowtitle = new StringBuilder();
if(GetWindowText(hwnd, windowtitle, 2000)>0)
Console.WriteLine(windowtitle);
//Console.WriteLine(nodeCount);
if (nodeCount == 0)
{
nodefirst = windowlist.AddFirst(windowtitle);
nodeCount++;
}
else
{
if (nodeCount == 1)
{
nodeprev = windowlist.AddAfter(nodefirst, windowtitle);
nodeCount++;
}
if (nodeCount > 1)
{
nodeprev = windowlist.AddAfter(nodeprev, windowtitle);
nodeCount++;
}
}
}
return CallNextHookEx(_hookID, nCode, wParam, lParam);
}
private const int WH_MOUSE_LL = 14;
private enum MouseMessages
{
WM_LBUTTONDOWN = 0x0201,
WM_LBUTTONUP = 0x0202,
WM_MOUSEMOVE = 0x0200,
WM_MOUSEWHEEL = 0x020A,
WM_RBUTTONDOWN = 0x0204,
WM_RBUTTONUP = 0x0205
}
[StructLayout(LayoutKind.Sequential)]
private struct POINT
{
public int x;
public int y;
}
[StructLayout(LayoutKind.Sequential)]
private struct MSLLHOOKSTRUCT
{
public POINT pt;
public uint mouseData;
public uint flags;
public uint time;
public IntPtr dwExtraInfo;
IntPtr hwnd;
}
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
private static extern IntPtr SetWindowsHookEx(int idHook,
LowLevelMouseProc lpfn, IntPtr hMod, uint dwThreadId);
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool UnhookWindowsHookEx(IntPtr hhk);
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
private static extern IntPtr CallNextHookEx(IntPtr hhk, int nCode,
IntPtr wParam, IntPtr lParam);
[DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
private static extern IntPtr GetModuleHandle(string lpModuleName);
[DllImport("user32.dll", CharSet = CharSet.Auto, ExactSpelling = true)]
public static extern IntPtr GetForegroundWindow();
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
static extern int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount);
}
}
虽然当我不使用低级挂钩而只使用 Thread.sleep(5000) 并每 5 秒不断获取活动窗口名称时,它不会崩溃。 请帮我找出原因? .请帮帮我。
【问题讨论】:
-
您可以使用
GetCursorPos获取点击的屏幕坐标,WindowFromPoint检索与该点击关联的窗口,GetWindowText获取窗口标题,如果您使用ScreenToClient需要坐标相对于窗口。如果您需要窗口本身,而不是孩子,您可以使用GetAncestor。希望其中一些能派上用场。绝对不需要钩子。 -
@chris :我非常感谢您的方法,但我不明白如何跟踪所有鼠标点击(这将发生在各种窗口上,我需要检索的标题)如果我不要勾住鼠标点击。假设我使用了一个 GetWindowUnderCursor() 来调用 ScreenToClient 和 WindowFromPoint,那么我必须每 5 秒调用一次这个函数 (GetWindowsUnderCursor) 以使光标现在位于哪个窗口上,或者钩住鼠标单击以便我得到通知用户单击窗口时的窗口名称,为此使用了 GetForegroundWindow。