I'm using the WPF Extended toolkit Wizard.
I'm wondering how I can go about validating that all controls have been filled out on a page before allowing the user to navigate forward.
I know I can trap the Next button click in my code behind:
private void Wizard_Next(object sender, Xceed.Wpf.Toolkit.Core.CancelRoutedEventArgs e)
{
}
I know I can detect which page on the Wizard I am on based on the sender, but how do I get a handle on the Controls that are on that wizard page?