我创建了一个窗口而没有显示它:
int main()
{
CreateWindow("SysListView32","Geek",0, 0, 0, 0, 0,NULL, NULL, (HINSTANCE)GetCurrentProcess(), NULL);
getch();
}
...在另一个过程中使用FindWindow()
查找其句柄:
int main()
{
HWND H = FindWindow("SysListView32", "Geek");
std::cout<< "The handle of created window is : " <<H;
getch();
}
FindWindow
如何找到它的处理方式?我假设它不找到它,因为process1没有显示窗口。
如何才能找到可见的窗口?
答案 0 :(得分:6)
即使窗口不可见,它当然也在FindWindow枚举的所有现有窗口的列表中(例如,您可以使用Spy ++显示此列表)。如果您不想搜索隐藏的窗口,则必须检查其标志:
HWND H = FindWindow("SysListView32", "Geek");
if (H) {
LONG style = GetWindowLong(H, GWL_STYLE);
if (style & WS_VISIBLE)
std::cout << "The handle of created visible window is : " << H << std::endl;
else
std::cout << "The handle of created hidden window is : " << H << std::endl;
} else {
std::cout << "No such window found" << std::endl;
}
答案 1 :(得分:0)
FindWindow找到顶级窗口。
当你的CreateWindow调用正在创建一个顶级窗口(即没有父窗口的窗口)时,我不相信它会真正起作用。
创建顶级SysListView32肯定是非常不寻常的(如果没有错)。 ListView控件应该是顶级窗口的子窗口,而不是它们自己的顶级窗口。