开发者

How to get HWND of the currently active Windows Explorer window?

开发者 https://www.devze.com 2023-03-12 00:43 出处:网络
I know how to get the 开发者_运维问答HWND of the desktop: GetDesktopWindow(). But I haven\'t been able to find a function that returns the HWND of the currently active Windows Explorer main window.

I know how to get the 开发者_运维问答HWND of the desktop: GetDesktopWindow().

But I haven't been able to find a function that returns the HWND of the currently active Windows Explorer main window.

How do I get the HWND of the currently active Windows Explorer window in a safe and reliable manner?


You can get the currently active window via GetForegroundWindow(). You could then do GetWindowThreadProcessId() to get a PID which you can then convert to a process handle with OpenProcess() (you will want PROCESS_QUERY_INFORMATION and PROCESS_VM_READ access rights) and then you can check the process name with GetModuleFileNameEx(). Don't remember to close the process handle afterwards with CloseHandle().

Here's some code I just wrote in notepad. You'd probably do something along these lines.

DWORD  lpFileName[MAX_PATH] = {0};
DWORD  dwPID;
HANDLE hProcess;
HWND   hwnd = GetForegroundWindow();
GetWindowThreadProcessId( hwnd, &dwPID );
hProcess = OpenProcess( PROCESS_QUERY_INFOMRATION | PROCESS_VM_READ, false, dwPID );
GetModuleFileNameEx( hProcess, NULL, lpFileName, _countof( lpFileName ) );
PathStripPath( lpFileName );

if( _tcscmp( _T("explorer.exe"), lpFileName ) == 0 ) {
  _tprintf( _T("explorer window found") );
} else {
  _tprintf( _T("foreground window was not explorer window") );
}
CloseHandle( hProcess );

To get all open explorer windows you can use EnumWindows() which you provide a callback which receives all the top-level windows. You can then filter out however you want, maybe by process name (above), maybe by class name (GetClassName()).


Well, if you're certain that a Windows Explorer window is currently the foreground window you can use GetForegroundWindow. Otherwise, I think you'd have to enumerate through all windows until you've found the top-most Explorer window. Here's an example that I wrote up of how to enumerate through all windows*. Then, according to this SO thread, you can use GetWindowThreadProcessId to filter windows owned by Explorer.

*It's been a while, but I think EnumWindows iterates from the top of the z-order to the bottom.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号