lm68140318 发表于 2023-4-25 15:21:14

GetTopWindow

        HWND hWnd2 = ::GetDesktopWindow();//获取桌面窗口的句柄
        HWND hWnd = ::FindWindow(_T("Notepad"), NULL);
        if (!hWnd) {
                AfxMessageBox(_T("请打开记事本"));
                ExitProcess(0);
        }
        BOOL b = ::BringWindowToTop(hWnd);
        //把记事本放到Z序的顶部
        HWND hWnd1 = ::GetTopWindow(hWnd2);//获取指定窗口的子窗口中最顶层的窗口句柄
        /*
        参数:HWND hWnd 被查序的父窗口的句柄。如果该参数为NULL,函数返回Z序顶部的窗口句柄
       
        */

        CString str;
        str.Format(_T("hWnd=%d\r\n"), hWnd);
        ::OutputDebugString(str);
        str.Format(_T("hWnd1=%d\r\n"), hWnd1);
        ::OutputDebugString(str);





我的问题:通过BringWindowToTop函数,已经把记事本放到Z序的顶部;GetTopWindow函数获取顶部窗口句柄,可是返回的句柄hWnd1与记事本的句柄hWnd 不相同??



isdkz 发表于 2023-4-25 15:55:35

你的问题是你使用了 `GetTopWindow` 函数来获取顶部窗口句柄,但返回的句柄 `hWnd1` 与记事本的句柄 `hWnd` 不相同。

问题的原因是 `GetTopWindow` 函数是用于获取指定窗口的子窗口中 Z 序最顶层的窗口句柄,而不是用于获取顶层窗口句柄。在这段代码中,你使用了桌面窗口句柄 `hWnd2` 作为 `GetTopWindow` 的参数,因此返回的是桌面窗口的子窗口中 Z 序最顶层的窗口句柄。

如果你想要获取顶层窗口句柄,你可以使用 `GetForegroundWindow` 函数,这个函数会返回当前活动窗口的句柄。这里是一个修改后的代码示例:

HWND hWnd2 = ::GetDesktopWindow();//获取桌面窗口的句柄
HWND hWnd = ::FindWindow(_T("Notepad"), NULL);
if (!hWnd) {
    AfxMessageBox(_T("请打开记事本"));
    ExitProcess(0);
}
BOOL b = ::BringWindowToTop(hWnd);
//把记事本放到Z序的顶部
HWND hWnd1 = ::GetForegroundWindow();//获取当前活动窗口的句柄

CString str;
str.Format(_T("hWnd=%d\r\n"), hWnd);
::OutputDebugString(str);
str.Format(_T("hWnd1=%d\r\n"), hWnd1);
::OutputDebugString(str);


这样,`hWnd1` 应该与 `hWnd` 相同,因为你已经使用 `BringWindowToTop` 函数将记事本窗口置于 Z 序的顶部。
页: [1]
查看完整版本: GetTopWindow