Back to Devexpress

Wizard Control

wpf-115979-controls-and-libraries-navigation-controls-wizard-control.md

latest2.1 KB
Original Source

Wizard Control

  • Apr 04, 2023
  • 2 minutes to read

Overview

The WPF Wizard is a tool for building dialogs with multiple pages that guide your end-users through a specific process (e.g., product installation).

The list below outlines the main Wizard Control features:

  • three types of pages, each with its own mark-up and set of features;
  • embedded wizard buttons;
  • various page templates;
  • rich navigation capabilities;
  • suits for creating both simple wizards where pages change one by one in a strict order, and wizards with a non-linear page sequence where one page can lead to various other pages depending on the specific criteria;
  • WizardService designed to use the Wizard Control in accordance with MVVM.

Concepts

Examples

The Wizard is represented by the DevExpress.Xpf.Controls.Wizard class. To use it in your application, add a reference to the DevExpress.Xpf.Controls.v25.2.dll assembly.

The following examples illustrate how to implement the Wizard Control.

View Example: How to Create a Wizard with pages defined in XAML

View Example: How to Create a wizard based on a collection of view models

View Example: How to use the WizardService