- ウィンドウを常に手前に表示
- ウィンドウの表示/非表示
SetWindowPos() の第1引数に「&wndTopMost」を指定することで、ウィンドウを常に手前に表示できるようになる。
BOOL CMainFrame::PreCreateWindow(CREATESTRUCT &cs) { SetWindowPos(&wndTopMost, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_SHOWWINDOW); return(CFrameWnd::PreCreateWindow(cs)); }
ウィンドウの表示/非表示を制御するためには ShowWindow() を使用します。