CPropertySheet::m_psh
成员存储 PROPSHEETHEADER特性的结构。
备注
使用此结构初始化属性表的外观,则在构造后,但,则显示与 DoModal 成员函数之前。例如,设置 m_psh 的 dwSize 成员设置为要属性表具有的范围。
有关此结构的更多信息,包括列出其成员,请参见。Windows SDK的 PROPSHEETHEADER。
示例
// This code fragment shows how to change CPropertySheet's settings
// before it is shown. After the changes, CPropertySheet has the
// caption "Simple Properties", no "Apply" button, and the
// second page (CColorPage) initially on top.
CPropertySheet dlgPropertySheet(_T("Simple PropertySheet"));
CStylePage stylePage;
CColorPage colorPage;
CShapePage shapePage;
dlgPropertySheet.AddPage(&stylePage);
dlgPropertySheet.AddPage(&colorPage);
dlgPropertySheet.AddPage(&shapePage);
dlgPropertySheet.m_psh.dwFlags |= PSH_NOAPPLYNOW | PSH_PROPTITLE;
dlgPropertySheet.m_psh.pszCaption = _T("Simple");
dlgPropertySheet.m_psh.nStartPage = 1;
dlgPropertySheet.DoModal();
要求
Header: afxdlgs.h