-
-
[原创]几种枚举窗口的方法(包括猥琐的你懂得)
-
发表于:
2016-5-26 12:34
6428
-
老生常谈的枚举那些就 不说了
说一些 很少有人处理的
POINT pt;
GetCursorPos(&pt);
hd=WindowFromPhysicalPoint(pt);
if (hd!=NULL)
{
GetWindowTextA(hd, text, 260);
printf("text :%s \n",text);
Sleep(2000);
}
获取当前鼠标所在位置的窗口
随便写个demo 在vista以上就anti sod
GetCursorPos(&pt);
ScreenToClient(GetDesktopWindow(), &pt);
hd= ChildWindowFromPoint(GetDesktopWindow(), pt);
if (hd != NULL){
GetWindowTextA(hd, text, 260);
printf("text :%s \n", text);
Sleep(2000);
}*/
从某个坐标处开始枚举 实际上是 枚举的 hwd内的窗口 坐标要转换成 用户坐标
查色 比对的就不说了~
很多人爱用的
HWND hChild = ::GetWindow(ParentWnd, GW_CHILD);
for (;hChild != NULL; hChild = ::GetWindow(hChild, GW_HWNDNEXT))
{
}
HWND WINAPI RealChildWindowFromPoint(
_In_ HWND hwndParent,
_In_ POINT ptParentClientCoords
);
PhysicalToLogicalPoint
检测 隐藏窗口的话就有N+!种方法了 太多 不说了
以上 是 相对猥琐的东西了~~~
但是 我还是没想到X3更新后用的什么方法枚举我的CE~
[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!