Back to Devexpress

Wizard.AnimationType Property

wpf-devexpress-dot-xpf-dot-controls-dot-wizard-b99cb88b.md

latest2.7 KB
Original Source

Wizard.AnimationType Property

Specifies how transitions between wizard pages are animated. This is a dependency property.

Namespace : DevExpress.Xpf.Controls

Assembly : DevExpress.Xpf.Controls.v25.2.dll

NuGet Package : DevExpress.Wpf.Controls

Declaration

csharp
public AnimationType AnimationType { get; set; }
vb
Public Property AnimationType As AnimationType

Property Value

TypeDescription
AnimationType

An AnimationType enumeration value.

|

Available values:

NameDescription
Fade

Pages fade in.

| | SlideHorizontal |

Pages slide horizontally.

| | SlideVertical |

Pages slide vertically.

| | None |

Pages are shown immediately, without any visual effects.

|

Remarks

To disable the transition animation, set the AnimationType property to AnimationType.None.

The following code snippets (auto-collected from DevExpress Examples) contain references to the AnimationType property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

wpf-create-a-wizard-with-pages-defined-in-xaml/CS/WizardControlExample/MainWindow.xaml#L9

xml
<Grid>
    <dxco:Wizard Cancel="Wizard_Cancel" AnimationType="Fade">
        <dxco:WelcomeWizardPage HeaderBackground="AliceBlue" Header="Header">

how-to-use-the-wpf-wizardservice/CS/VM-DrivenWizard/MainWindow.xaml#L39

xml
</GroupBox>
<dxco:Wizard x:Name="wizard" Grid.Row="1" AnimationType="SlideHorizontal">
    <dxmvvm:Interaction.Behaviors>

See Also

Wizard Class

Wizard Members

DevExpress.Xpf.Controls Namespace