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