Im using the WPF Extended toolkit Wizard.
I am wondering how I can verify that all controls have been populated on the page before allowing the user to move forward.
I know that I can catch the next mouse click in my code in
private void Wizard_Next(object sender, Xceed.Wpf.Toolkit.Core.CancelRoutedEventArgs e)
{
}
I know that I can determine which page on the Wizard I'm based on based on the sender, but how can I get a handle to the controls that are on this page of the wizard?
source
share