各位老师,c语言中获取已知顶层窗口下所有的子窗口句柄,如何写呢?
各位老师,c语言中使用EnumWindows和EnumChildWindows函数以及相对的回调函数EnumWindowsProc和EnumChildWindowsProc获取已知顶层窗口下所有子窗口句柄,该如何写呢?谢谢了,如下:
#include <Windows.h>
#include <iostream>
#include <string.h>
using namespace std;
int main()
{
HWND hd = FindWindow(NULL, "窗口5.0"); //得到顶层窗口句柄
hd = GetWindow(hd, GW_CHILD); //得到顶层窗口上第一个子窗口
char s = { 0 };
int num = 1;
while (hd != NULL) //循环得到所有的子窗口
{
memset(s, 0, 200);
GetWindowText(hd, s, 200);
cout << num++ << ": " << s << endl;
hd = GetNextWindow(hd, GW_HWNDNEXT);
}
getchar();
return 0;
}
谢谢了
那位老师知道,谢谢了
页:
[1]