Sdílet prostřednictvím


CPropertyPage::OnWizardNext

Členské funkce se nazývá rámcem, když uživatel klepne na tlačítko Další v průvodci.

virtual LRESULT OnWizardNext();

Vrácená hodnota

Automatický přechod na další stránku; 0 –1 zabránit ve změně stránky.Pokud chcete přejít na další stránky, vrátí identifikátor dialogové okno zobrazit.

Poznámky

Potlačit toto členské funkce určit některé akce, které musí provést uživatel po klepnutí na tlačítko Další.

Další informace týkající se vlastností typ průvodce viz CPropertySheet::SetWizardMode.

Příklad

// The Next button is selected from the propertysheet. Show the  
// second page of the propertysheet ONLY if a non-zero value is  
// entered to the Number edit control of the CStylePage. Otherwise 
// display a message to the user and stay on the current page.

LRESULT CStylePage::OnWizardNext() 
{
   // Get the number from the edit control 
   int num = GetDlgItemInt(IDC_NUMOBJECTS);

   if (num == 0)
   {
      // Display a message to the user
      AfxMessageBox(_T("Supply a non-zero number on the edit control"), MB_OK);

      // Stay on the current page 
      return -1;
   }

   // CPropertyPage::OnWizardNext returns zero and causes 
   // the property sheet to display the next page 
   return CPropertyPage::OnWizardNext();
}

Požadavky

Záhlaví: afxdlgs.h

Viz také

Referenční dokumentace

Třída CPropertyPage

Graf hierarchie

CPropertySheet::SetWizardMode