Hi
I think you shold modify Wizard.OnCurrentPageChanged method to this:
```
protected virtual void OnCurrentPageChanged(WizardPage oldValue, WizardPage newValue)
{
if (oldValue != null)
oldValue.RaiseEvent(new RoutedEventArgs(WizardPage.LeaveEvent));
RaiseRoutedEvent(Wizard.PageChangedEvent);
if (newValue != null)
newValue.RaiseEvent(new RoutedEventArgs(WizardPage.EnterEvent));
}
```
Not sure if its works or not, but please make it possible.
thank you.
I think you shold modify Wizard.OnCurrentPageChanged method to this:
```
protected virtual void OnCurrentPageChanged(WizardPage oldValue, WizardPage newValue)
{
if (oldValue != null)
oldValue.RaiseEvent(new RoutedEventArgs(WizardPage.LeaveEvent));
RaiseRoutedEvent(Wizard.PageChangedEvent);
if (newValue != null)
newValue.RaiseEvent(new RoutedEventArgs(WizardPage.EnterEvent));
}
```
Not sure if its works or not, but please make it possible.
thank you.