CPropertySheet::SetFinishText
Define o texto no botão de comando de suporte.
void SetFinishText(
LPCTSTR lpszText
);
Parâmetros
- lpszText
Aponta para o texto a ser exibido no botão de comando de suporte.
Comentários
Chame SetFinishText para exibir texto no botão de comando de suporte e em seguida e voltar para ocultar os botões após o usuário concluir a ação na última página do assistente.
Exemplo
// CShapePage is the last wizard property page. Enable the Back
// button and change the Next button to Finish. The "Finish" button
// will have "Done" as its caption.
BOOL CShapePage::OnSetActive()
{
CPropertySheet* psheet = (CPropertySheet*) GetParent();
psheet->SetWizardButtons(PSWIZB_BACK | PSWIZB_FINISH);
psheet->SetFinishText(_T("Done"));
return CPropertyPage::OnSetActive();
}
Requisitos
Cabeçalho: afxdlgs.h