在最小化窗口中获取鼠标单击坐标



我正在尝试在最小化的窗口中自动单击鼠标。

由于我的屏幕/桌面坐标与进程/窗口坐标不同,因此我遇到了问题。

这是我正在测试的代码:

Function MakeDWord(LoWord As Integer, HiWord As Integer) As Long
Return New IntPtr((HiWord << 16) Or (LoWord And &HFFFF))
End Function
SendMessage(_targetProcess.MainWindowHandle, WM_LBUTTONDOWN, 0&, MakeDWord(x, y))
SendMessage(_targetProcess.MainWindowHandle, WM_LBUTTONUP, 0&, MakeDWord(x, y))

代码正在工作,它向所需的窗口发送鼠标单击,但不是正确的坐标。

因此,我需要找到要单击的窗口区域的相对坐标,而不是桌面/屏幕坐标。

有什么方法可以检测发送到进程/窗口的事件以获取相对坐标?

例如,在Visual Studio中,有一个名为spy++的工具可以工作,但现在我不会将点击发送到我自己的应用程序。

ScreenToClient 函数解决了这个问题:

https://pinvoke.net/default.aspx/user32/ScreenToClient.html

RECT rct;
POINT topLeft;
POINT bottomRight;
/** Getting a windows position **/
GetWindowRect(hWnd, out rct);
/** assign RECT coods to POINT **/
topLeft.X = rct.Left;
topLeft.Y = rct.Top;
bottomRight.X = rct.Right;
bottomRight.Y = rct.Bottom;
/** this takes the POINT, which is using screen coords (0,0 in top left screen) and converts them into coords inside specified window (0,0 from  top left of hWnd) **/
ScreenToClient(hWnd, ref topLeft);
ScreenToClient(hWnd, ref bottomRight);
int width = bottomRight.X - topLeft.X;
int height = bottomRight.Y - topLeft.Y;
Rectangle R = new Rectangle(topLeft.X, topLeft.Y, width, height);

最新更新