次の方法で共有


CWindow::Detach

CWindow のオブジェクトと設定 m_hWnd から nullへのデタッチ m_hWnd

HWND Detach( ) throw();

戻り値

CWindow オブジェクトに関連付けられた HWND を返します。

使用例

//The following example attaches an HWND to the CWindow object and 
//later detaches the CWindow object from the HWND when no longer needed

CWindow myWindow;
myWindow.Attach(hWnd);

//call CWindow wrappers

//We don't need the C++ object any more, so detach it from the HWND.
myWindow.Detach(); 

必要条件

Header: atlwin.h

参照

関連項目

CWindow クラス

CWindow::Attach