CPropertyPage::OnWizardBack
當使用者按一下精靈時,的上一頁按鈕此成員函式由架構呼叫。
virtual LRESULT OnWizardBack();
傳回值
會自動前進到下一頁的 0;–防止 1 的變更。 除了下一個之外,若要跳至網頁,將會顯示對話方塊的識別項。
備註
覆寫這個成員函式指定使用者必須採取一些動作,在上一頁] 按鈕。
如需如何執行的精靈類型的屬性工作表的詳細資訊,請參閱 CPropertySheet::SetWizardMode。
範例
// The Back button is selected from the propertysheet. Get the selected
// radio button of the page by looping through all buttons on the
// pages. m_radioColor is a member variable of
// CColorPage (a CPropertyPage-derived class). Its initial value
// is initialized in OnInitDialog().
LRESULT CColorPage::OnWizardBack()
{
for (int id = IDC_RADIOBLACK; id <= IDC_RADIOGREEN; id++)
{
CButton* button = (CButton*) GetDlgItem(id);
if (button->GetCheck() == 1)
{
m_radioColor = id - IDC_RADIOBLACK;
break;
}
}
return CPropertyPage::OnWizardBack();
}
需求
Header: afxdlgs.h