Partilhar via


CPropertyPage::OnWizardNext

Essa função de membro é chamada pela estrutura quando o usuário clica no botão seguinte no assistente.

virtual LRESULT OnWizardNext();

Valor de retorno

0 a depois automaticamente para a próxima página; – 1 para impedir que a página muda. Para saltar para uma página diferente a seguir, retornar o identificador da caixa de diálogo seja exibida.

Comentários

Substituir essa função de membro para especificar qualquer ação que o usuário deve executar quando o botão é pressionado seguir.

Para obter mais informações sobre como tornar um folha de propriedades de uma tipo CPropertySheet::SetWizardMode, consulte.

Exemplo

// 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();
}

Requisitos

Cabeçalho: afxdlgs.h

Consulte também

Referência

Classe CPropertyPage

Gráfico da hierarquia

CPropertySheet::SetWizardMode