CPropertySheet::SetFinishText
设置在完成命令按钮的文本。
void SetFinishText(
LPCTSTR lpszText
);
参数
- lpszText
指向在完成命令按钮中显示的文本。
备注
在用户完成对向导的最后一页后,事件调用 SetFinishText 显示在完成命令按钮的文本和隐藏下一个和后退按钮。
示例
// 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();
}
要求
Header: afxdlgs.h