CWnd::Attach
Bir Windows pencere bağlayan bir CWnd nesnesi.
BOOL Attach(
HWND hWndNew
);
Parametreler
- hWndNew
Windows pencere tanıtıcısını belirtir.
Dönüş Değeri
Başarılı olursa sıfırdan farklı; Aksi halde 0.
Örnek
Bu örnek, Attach ve Detach MDI istemcisi penceresinde eşlemek için nasıl kullanılacağını gösterir.
// Declare a CWnd member of CMainFrame
public:
CWnd m_wndMDIClient;
// detach MDI client window in CMainFrame destructor
m_wndMDIClient.Detach();
// In CMainFrame::OnCreate, attach MDI client window
if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
return -1;
// attach MDI client window
if (m_wndMDIClient.Attach(m_hWndMDIClient) == 0)
{
TRACE(_T("Failed to attach MDIClient.\n"));
return -1; // fail to create
}
Gereksinimler
Başlık: afxwin.h