CPropertyPage::CPropertyPage
构造 CPropertyPage 对象。
CPropertyPage( );
explicit CPropertyPage(
UINT nIDTemplate,
UINT nIDCaption = 0,
DWORD dwSize = sizeof(PROPSHEETPAGE)
);
explicit CPropertyPage(
LPCTSTR lpszTemplateName,
UINT nIDCaption = 0,
DWORD dwSize = sizeof(PROPSHEETPAGE)
);
CPropertyPage(
UINT nIDTemplate,
UINT nIDCaption,
UINT nIDHeaderTitle,
UINT nIDHeaderSubTitle = 0,
DWORD dwSize = sizeof(PROPSHEETPAGE)
);
CPropertyPage(
LPCTSTR lpszTemplateName,
UINT nIDCaption,
UINT nIDHeaderTitle,
UINT nIDHeaderSubTitle = 0,
DWORD dwSize = sizeof(PROPSHEETPAGE)
);
参数
nIDTemplate
本页模板的ID。nIDCaption
此页上的选项将会将名称的ID。如果为 0,则名称在此页中的对话框模板要执行。dwSize
lpszTemplateName
指向包含模板的名称此页的字符串。不能为 NULL。nIDHeaderTitle
在属性页标头的标题位置上的名称的ID。nIDHeaderSubTitle
在属性页标头的子标题位置上的名称的ID。
备注
在满足以下条件后,对象显示:
使用 CPropertySheet::AddPage,页已添加到特性表。
用户选定(>)此页。
如果有多个参数(例如,因此,如果使用数组),请使用 CPropertySheet::Construct 而不是 CPropertyPage。
示例
// Declare a CStylePage object, which is a CPropertyPage-derived class.
CStylePage stylePage;
// Declare a CPropertyPage object with IDD_SHAPE, the ID of the
// template used for this page.
CPropertyPage shapePage(IDD_SHAPE);
要求
Header: afxdlgs.h