只是直接的孩子,而不是孙子。
答案 0 :(得分:5)
GetWindow(HWND,GW_CHILD);似乎是诀窍。
答案 1 :(得分:0)
这段代码可以提供帮助!
HWND hChildWnd;
long childCount = 0L;
hChildWnd = GetWindow(hWnd, GW_CHILD);
if(IsWindow(hChildWnd)) {
childCount ++;
while(hChildWnd){
hChildWnd = GetWindow(hChildWnd, GW_HWNDNEXT);
if(IsWindow(hChildWnd))
childCount ++;
}
}