共用方式為


CWnd::Attach

將視窗 Windows CWnd 物件。

BOOL Attach(
   HWND hWndNew 
);

參數

  • hWndNew
    指定視窗的控制代碼視窗。

傳回值

如果不是零,則成功,則為 0。

範例

這個範例顯示如何使用附加和中斷連結對應至 MDI 用戶端視窗。

// 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
   }

需求

Header: afxwin.h

請參閱

參考

CWnd 類別

階層架構圖

CWnd::Detach

CWnd::m_hWnd

CWnd::SubclassWindow