Category / Section
                                    
                                How do I trigger the click event of NextButton in Wizard Control?
                
                
                    1 min read
                
            
    
Use PerformClick method to trigger the click event of NextButton.
Here is the code snippet:
C#
this.wizardControl1.NextButton.PerformClick();VB
Me.wizardControl1.NextButton.PerformClick()