SetForegroundWindow() 正确用法:激活一个窗口并前台显示

激活窗口,并前台显示:

//如果最小化了窗口, 就先恢复
if(IsIconic(hWnd))
{
    ShowWindow(hWnd, SW_RESTORE);
}

//激活窗口,并前台显示窗口
HWND hForeWnd = GetForegroundWindow();
DWORD dwCurID = GetCurrentThreadId();
DWORD dwForeID = GetWindowThreadProcessId(hForeWnd, NULL);
AttachThreadInput(dwCurID, dwForeID, TRUE);
//ShowWindow(hWnd, SW_SHOWNORMAL);
SetWindowPos(hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE);
SetWindowPos(hWnd, HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE);
SetForegroundWindow(hWnd); //前台显示
AttachThreadInput(dwCurID, dwForeID, FALSE);

来自:https://www.cnblogs.com/dengpeng1004/p/5049646.html

posted @ 2021-07-30 09:41  personnel  阅读(502)  评论(0编辑  收藏  举报
友情链接:图片批量处理工具 gif动态图制作工具 制作电子相册 图片排版工具 制作淘宝主图视频 MKScript 鼠标键盘自动化脚本语言