CPropertySheet::SetFinishText
Définit le texte du bouton de commande terminé.
void SetFinishText(
LPCTSTR lpszText
);
Paramètres
- lpszText
Pointe vers le texte à afficher sur le bouton de commande terminé.
Notes
Appelez SetFinishText pour afficher le texte du bouton de commande terminé et pour masquer le prochain et les Touches précédent lorsque l'utilisateur exécute l'action sur la dernière page de l'assistant.
Exemple
// 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();
}
Configuration requise
Header: afxdlgs.h