Looks like we can trap the cancel event via wizard_Cancel, but how to cancel the cancel?
I want to do something like this:
private void wizard_Cancel(object sender, RoutedEventArgs e)
{
if (AreYouSure())
{
e.Cancel = true;
}
}
I want to do something like this:
private void wizard_Cancel(object sender, RoutedEventArgs e)
{
if (AreYouSure())
{
e.Cancel = true;
}
}