カテゴリー
アーカイブ
2023/06/20 / SetForegroundWindow への1件のコメント
他 AP から,HWND を指定して前面に移動する方法.
bool Window_Foreground (HWND hWnd)
{
if (hWnd == NULL) { return false ; }
if (!::IsWindow(hWnd)) { return false ; }
{
if (::IsIconic(hWnd)) {
WINDOWPLACEMENT wndpl = { 0 } ;
::GetWindowPlacement(hWnd,&wndpl) ;
wndpl.showCmd = SW_RESTORE ;
::SetWindowPlacement(hWnd,&wndpl) ;
}
SetForegroundWindow(hWnd) ;
}
return true ;
}
CWnd::SetWindowPos(&wndTopMost,…)
Is this 投稿 useful?
Useful
Useless
0 of 0 people say this 投稿 is useful.