CPropertySheet::SetTitle
Especifica a legenda de folha de propriedades (o texto exibido na barra de título da janela de quadro.)
void SetTitle(
LPCTSTR lpszText,
UINT nStyle = 0
);
Parâmetros
nStyle
Especifica o estilo de título da folha de propriedades.o estilo deve ser especificado em 0 ou como PSH_PROPTITLE.Se o estilo é definido como PSH_PROPTITLE, a palavra “propriedades” aparece após o texto especificado como a legenda.Por exemplo, chame SetTitle(“simples”, PSH_PROPTITLE) resultará em uma legenda da folha de propriedades “de propriedades simples”.lpszText
Aponta para o texto a ser usado como a legenda na barra de título da folha de propriedades.
Comentários
Por padrão, uma folha de propriedades usa o parâmetro de legenda no construtor de folha de propriedades.
Exemplo
// Declare a CPropertySheet object with a caption "Simple PropertySheet".
CPropertySheet dlgPropertySheet(_T("Simple PropertySheet"));
// Add three pages to the CPropertySheet object. CStylePage, CColorPage,
// and CShapePage are CPropertyPage-derived classes created
// by the Add Class wizard.
CStylePage stylePage;
CColorPage colorPage;
CShapePage shapePage;
dlgPropertySheet.AddPage(&stylePage);
dlgPropertySheet.AddPage(&colorPage);
dlgPropertySheet.AddPage(&shapePage);
// Change the caption of the CPropertySheet object
// from "Simple PropertySheet" to "Simple Properties".
dlgPropertySheet.SetTitle(_T("Simple"), PSH_PROPTITLE);
// Show the CPropertySheet object as MODAL.
dlgPropertySheet.DoModal();
Requisitos
Cabeçalho: afxdlgs.h