次の方法で共有


CWindow::GetParent

直接の親ウィンドウを取得します。

HWND GetParent( ) const throw();

解説

Windows SDKの GetParent を参照してください。

使用例

// 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();

必要条件

Header: atlwin.h

参照

関連項目

CWindow クラス

CWindow::SetParent