Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.
Gets or sets an AnimationSelector class descendant that provides a custom storyboard rendering the forward and backward navigation animation. This is a dependency property.
The Wizard.AnimationType property allows you to enable animation effects when navigating between views. Using this setting, you can enable the slide or fade animation.
However, if this setting does not meet your needs, it is possible to provide a custom forward and/or backward navigation animation. For this purpose, create an AnimationSelector class descendant, and override the SelectStoryboard method, which returns the Storyboard object used to render the navigation animation. This method accepts the animation parameter which comprises the animation settings being used. These settings allow you, for instance, to determine whether forward or backward navigation is performed. Then, assign the created AnimationSelector class descendant to the AnimationSelector property.
Note
If the Wizard.AnimationType setting is set to None, the AnimationSelector property is not in effect.
The example below shows how to provide a custom storyboard used to render backward and forward navigation for a NavigationFrame. The AnimationSelector‘s SelectStoryboard method override returns a storyboard according to the animation direction.