共用方式為


CWnd::SetWindowContextHelpId

呼叫此成員函式關聯的說明主題代碼與指定的視窗。

BOOL SetWindowContextHelpId(
   DWORD dwContextHelpId 
);

參數

  • dwContextHelpId
    說明主題代碼。

傳回值

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

備註

如果子視窗不會說明主題代碼,它會繼承其父代的 Windows 識別項。 同樣地,,如果附屬視窗沒有說明主題代碼,它會繼承其主控視窗識別項。 說明主題代碼這種繼承可讓應用程式設定對話方塊的識別項和它的所有控制項。

範例

// The following code fragment is from CMyDlg::OnInitDialog
// CMyDlg is derived from CDialog.

// Associate a help context id with the control.
// IDC_TESTHELP_CONTROL is the id of the control
// and HIDC_TESTHELP_CONTROL is its help context
// id associated with the control.
CWnd* pWnd = GetDlgItem(IDC_TESTHELP_CONTROL);
pWnd->SetWindowContextHelpId(HIDC_TESTHELP_CONTROL);

需求

Header: afxwin.h

請參閱

參考

CWnd 類別

階層架構圖

CWnd::GetWindowContextHelpId