C++/(MFC)CWnd를 Top Most로 만들기 Edit Diff Refresh Backlink Random Search History Help Setting void ToggleTopMost(CWnd* pWnd) { if (pWnd->GetExStyle() & WS_EX_TOPMOST) pWnd->SetWindowPos(&wndNoTopMost, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE); else pWnd->SetWindowPos(&wndTopMost, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE); } MFC TopMost Show Comments Please enable JavaScript to view the comments powered by Disqus.