This is a migrated thread and some comments may be shown as answers.

Handle Cancel and Finish buttons on dynamic wizard pages

1 Answer 209 Views
Wizard
This is a migrated thread and some comments may be shown as answers.
Ricardo
Top achievements
Rank 1
Ricardo asked on 15 May 2018, 11:19 AM

Hello,

 

I'm creating a telerik RadWizard App with dynamic wizardpages (c#).

 

Currently only the next and previous buttons seem to be doing something, whenever i click on cancel / finish, my application doesn't do anything.

 

How can i control this behavior?

 

Regards

1 Answer, 1 is accepted

Sort by
0
Ricardo
Top achievements
Rank 1
answered on 16 May 2018, 08:52 AM

Solution found:

 

RadWizard radwizard = new RadWizard();
radwizard.Cancel += CancelPage;
 
 private void CancelPage(object sender, NavigationButtonsEventArgs e)
 {
    Your code;
}
Tags
Wizard
Asked by
Ricardo
Top achievements
Rank 1
Answers by
Ricardo
Top achievements
Rank 1
Share this question
or