Partager via


CPropertyPage::m_psp

m_psp est une structure dont les membres stockent les caractéristiques de PROPSHEETPAGE.

PROPSHEETPAGE m_psp;

Notes

Utilisez cette structure pour initialiser l'apparence d'une page de propriétés après construite.

Pour plus d'informations sur cette structure, y compris une liste de ses membres, consultez PROPSHEETPAGE dans Kit de développement logiciel Windows.

Exemple

CPropertySheet sheet(_T("Simple PropertySheet"));

// Change the settings of the three pages to enable property sheet's  
// Help button when the page is active.  CStylePage, CShapePage, and  
// CColorPage are CPropertyPage-derived classes.
CStylePage pageStyle;
pageStyle.m_psp.dwFlags |= PSP_HASHELP;

CColorPage pageColor;
pageColor.m_psp.dwFlags |= PSP_HASHELP;

CShapePage pageShape;
pageShape.m_psp.dwFlags |= PSP_HASHELP;

sheet.AddPage(&pageStyle);
sheet.AddPage(&pageColor);
sheet.AddPage(&pageShape);

sheet.SetWizardMode();

sheet.DoModal();

Configuration requise

Header: afxdlgs.h

Voir aussi

Référence

CPropertyPage, classe

Graphique de la hiérarchie

CPropertySheet, classe

PROPSHEETPAGE