Hi
I would like to navigate to a specific page using the SelectedPageChanging event.
What would be the call to have the next page be changed to the PaymentDetails WizardPage.Thanks
Joe
I would like to navigate to a specific page using the SelectedPageChanging event.
What would be the call to have the next page be changed to the PaymentDetails WizardPage.
private void wizard_SelectedPageChanging(object sender, WizardSelectedPageChangeEventArgs e)
{
if (e.OldSelectedPage == ItemsNeedAction)
{
if (actionNowNo.IsChecked == true)
{
//I want to navigate to the PaymentDetails WizardPage here
ItemsNeedAction.NextPage = PaymentDetails; //doesnt work
}
}
}
Joe