CWnd::BringWindowToTop
对堆栈的顶部显示 CWnd 重叠窗口。
void BringWindowToTop( );
备注
此外,BringWindowToTop 激活弹出,顶级和MDI子窗口。 应使用 BringWindowToTop 成员函数找到部分或完全由任何重叠窗口掩盖了所有窗口。
此功能称为Win32 BringWindowToTop功能。 更改在Z顺序中的窗口的位置的 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