能力值:
( LV2,RANK:10 )
|
-
-
2 楼
先从类名判断。然后再从样式。
写了段枚举子控件类名的代码。
#include <stdio.h>
#include <tchar.h>
#include <windows.h>
int main(void)
{
HWND hWndParent = reinterpret_cast<HWND>(0x2910d6);
::EnumChildWindows(hWndParent, [](HWND hWnd, LPARAM) -> BOOL
{
TCHAR szClassName[MAX_PATH];
::GetClassName(hWnd, szClassName, MAX_PATH);
::_tprintf(_T("hWnd:%#08x, Class:%s\r\n"), hWnd, szClassName);
return TRUE;
}
, NULL);
return 0;
}
|
|
|