CWnd::BringWindowToTop
將堆疊上的最頂端 CWnd 重疊的視窗。
void BringWindowToTop( );
備註
此外, BringWindowToTop 啟動快顯視窗,最上層和 MDI 子視窗。 應該用來 BringWindowToTop 成員函式發現部分或完全由任何重疊的視窗遮蔽的所有視窗。
這個函式 BringWindowToTop 呼叫 Win32 函式。 變更疊置順序的視窗的位置的 SetWindowPos 函式。 BringWindowToTop 函式並不會變更視窗樣式使其最上層視窗。 如需詳細資訊,請參閱 HWND_TOP 和 HWND_TOPMOST 有何不同?
範例
// Moves MDI child windows to the top when a mouse passes
// over it. CMdiView is derived from CView.
void CMdiView::OnMouseMove(UINT nFlags, CPoint point)
{
UNREFERENCED_PARAMETER(nFlags);
UNREFERENCED_PARAMETER(point);
GetParentFrame()->BringWindowToTop();
}
需求
Header: afxwin.h