다음을 통해 공유


CWindow::GetParent

Retrieves the immediate parent window.

HWND GetParent( ) const throw();

Remarks

See GetParent in the Windows SDK.

Example

// The following example attaches a HWND to the CWindow object
// and calls CWindow::GetParent to find out the parent
// window of the window wrapped by CWindow object.

CWindow myWindow;
myWindow.Attach(hWnd);   
HWND hWndParent = myWindow.GetParent();

Requirements

Header: atlwin.h

See Also

Reference

CWindow Class

CWindow::SetParent

Other Resources

CWindow Members