Habanero.Faces.Win.WizardControlWin.Next C# (CSharp) Method

Next() public method

Attempts to go to the next step in the wizard. If this is disallowed by the wizard controller a MessagePosted event will be fired.
public Next ( ) : void
return void
        public void Next()
        {
            DoIfCanMoveOn(delegate
            {
                _wizardController.CompleteCurrentStep();
                SetStep(_wizardController.GetNextStep());
                SetButtonState();

            });
        }