CWnd::BringWindowToTop
將 CWnd 帶到重疊視窗堆疊的最上層。
void BringWindowToTop( );
備註
此外,BringWindowToTop 會啟用快顯、最上層和 MDI 子視窗。 需使用 BringWindowToTop 成員函式,才能顯示出重疊視窗部分或完全遮住的視窗。
這個函式只會呼叫 Win32 BringWindowToTop 函式。 呼叫 SetWindowPos 函式依 Z 軸順序變更視窗的位置。 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();
}
需求
標題: afxwin.h