CWnd::SetWindowContextHelpId
调用该成员函数的关联帮助上下文标识符与指定的窗口。
BOOL SetWindowContextHelpId(
DWORD dwContextHelpId
);
参数
- dwContextHelpId
帮助上下文标识符。
返回值
非零,如果函数运行成功;否则为0。
备注
如果子窗口没有帮助上下文标识符,它继承其父窗口标识符。 同样,因此,如果一个拥有的窗口没有帮助上下文标识符,它继承其所有者窗口标识符。 帮助上下文标识符此继承能使应用程序设置"对话框中的标识符及其所有控件。
示例
// 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