Partilhar via


CPropertySheet::SetTitle

Especifica legenda a folha de propriedades (texto exibido no BAR de título de uma janela de quadro).

void SetTitle(
   LPCTSTR lpszText,
   UINT nStyle = 0 
);

Parâmetros

  • nStyle
    Especifica o estilo do título da folha de propriedades.O estilo deve ser especificado em 0 ou sistema autônomo PSH_PROPTITLE.Se o estilo for definido sistema autônomo PSH_PROPTITLE, sistema autônomo palavra "Propriedades" aparece após o texto especificado sistema autônomo a legenda.Por exemplo, chamar SetTitle("Simples", PSH_PROPTITLE) resultará em uma legenda de folha de propriedades de "Propriedades simples."

  • lpszText
    Aponta para o texto a ser usado sistema autônomo legenda na BAR 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 propriedade.

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

Consulte também

Referência

Classe CPropertySheet

Gráfico de hierarquia

CPropertySheet::GetPage

CPropertySheet::GetActivePage

Outros recursos

CPropertySheet membros