menu

WPF

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class WizardPage - WPF API Reference | Syncfusion

    Show / Hide Table of Contents

    Class WizardPage

    Specifies a wizard page that can be added to a WizardControl. There are plenty of properties exposed to customize the look and feel of the page easily.

    Inheritance
    System.Object
    WizardPage
    Implements
    System.IDisposable
    Namespace: Syncfusion.Windows.Tools.Controls
    Assembly: Syncfusion.Tools.Wpf.dll
    Syntax
    public class WizardPage : ContentControl, IDisposable
    Examples
    
    
    
    
    
    
    
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Data;
    using System.Windows.Documents;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Windows.Media.Imaging;
    using System.Windows.Navigation;
    using System.Windows.Shapes;
    using Syncfusion.Windows.Tools.Controls;
    namespace wizardControl
    {
        /// 
        /// Interaction logic for Window1.xaml
        /// 
        public partial class Window1 : Window
        {
            public Window1()
            {
                InitializeComponent();
                WizardControl wizardControl = new WizardControl();
                WizardPage wizardPage = new WizardPage();
                wizardControl.Items.Add(wizardPage); 
                this.Content = wizardControl;
            }
        }
    }

    Constructors

    WizardPage()

    Declaration
    public WizardPage()

    Fields

    BackEnabledProperty

    Identifies the BackEnabled property.

    Declaration
    public static readonly DependencyProperty BackEnabledProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    BackVisibilityProperty

    Identifies the BackVisibility property.

    Declaration
    public static readonly DependencyProperty BackVisibilityProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    BackVisibleProperty

    Identifies the BackVisibleProperty property.

    Declaration
    public static readonly DependencyProperty BackVisibleProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    BannerBackgroundProperty

    Identifies the BannerBackground property.

    Declaration
    public static readonly DependencyProperty BannerBackgroundProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    BannerImageHeightProperty

    Declaration
    public static readonly DependencyProperty BannerImageHeightProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    BannerImageProperty

    Identifies the BannerImage property.

    Declaration
    public static readonly DependencyProperty BannerImageProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    BannerImageWidthProperty

    Declaration
    public static readonly DependencyProperty BannerImageWidthProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    CancelEnabledProperty

    Identifies the CancelEnabled property.

    Declaration
    public static readonly DependencyProperty CancelEnabledProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    CancelVisibilityProperty

    Identifies the CancelVisibility property.

    Declaration
    public static readonly DependencyProperty CancelVisibilityProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    CancelVisibleProperty

    Identifies the CancelVisible property.

    Declaration
    public static readonly DependencyProperty CancelVisibleProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    DescriptionProperty

    Identifies the Description property.

    Declaration
    public static readonly DependencyProperty DescriptionProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    FinishEnabledProperty

    Identifies the FinishEnabled property.

    Declaration
    public static readonly DependencyProperty FinishEnabledProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    FinishVisibleProperty

    Identifies the FinishVisible property.

    Declaration
    public static readonly DependencyProperty FinishVisibleProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    HelpVisibilityProperty

    Identifies the HelpVisibility property.

    Declaration
    public static readonly DependencyProperty HelpVisibilityProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    HelpVisibleProperty

    Identifies the HelpVisible property.

    Declaration
    public static readonly DependencyProperty HelpVisibleProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    NextEnabledProperty

    Identifies the NextEnabled property.

    Declaration
    public static readonly DependencyProperty NextEnabledProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    NextPageProperty

    Identifies the NextPage property.

    Declaration
    public static readonly DependencyProperty NextPageProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    NextVisibilityProperty

    Identifies the NextVisibility property.

    Declaration
    public static readonly DependencyProperty NextVisibilityProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    NextVisibleProperty

    Identifies the NextVisible property.

    Declaration
    public static readonly DependencyProperty NextVisibleProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    PageTypeProperty

    Identifies the PageType property.

    Declaration
    public static readonly DependencyProperty PageTypeProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    PreviousPageProperty

    Identifies the PreviousPage property.

    Declaration
    public static readonly DependencyProperty PreviousPageProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    SelectedEvent

    Identifies Selected routed event.

    Declaration
    public static readonly RoutedEvent SelectedEvent
    Field Value
    Type
    System.Windows.RoutedEvent

    SelectingEvent

    Identifies Selecting routed event.

    Declaration
    public static readonly RoutedEvent SelectingEvent
    Field Value
    Type
    System.Windows.RoutedEvent

    TitleProperty

    Identifies the Title property.

    Declaration
    public static readonly DependencyProperty TitleProperty
    Field Value
    Type
    System.Windows.DependencyProperty

    UnselectedEvent

    Identifies Unselected routed event.

    Declaration
    public static readonly RoutedEvent UnselectedEvent
    Field Value
    Type
    System.Windows.RoutedEvent

    UnselectingEvent

    Identifies Unselecting routed event.

    Declaration
    public static readonly RoutedEvent UnselectingEvent
    Field Value
    Type
    System.Windows.RoutedEvent

    Properties

    BackEnabled

    Gets or sets the back enabled.

    Declaration
    public bool? BackEnabled { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Boolean>

    The back enabled.

    BackVisibility

    Gets the back visibility.

    Declaration
    public Visibility BackVisibility { get; set; }
    Property Value
    Type Description
    System.Windows.Visibility

    The back visibility.

    BackVisible

    Gets or sets the back visible.

    Declaration
    public bool? BackVisible { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Boolean>

    The back visible.

    BannerBackground

    Gets or sets the banner background.

    Declaration
    public Brush BannerBackground { get; set; }
    Property Value
    Type Description
    System.Windows.Media.Brush

    The banner background.

    BannerImage

    Gets or sets the banner image.

    Declaration
    public ImageSource BannerImage { get; set; }
    Property Value
    Type Description
    System.Windows.Media.ImageSource

    The banner image.

    BannerImageHeight

    Declaration
    public double BannerImageHeight { get; set; }
    Property Value
    Type
    System.Double

    BannerImageWidth

    Declaration
    public double BannerImageWidth { get; set; }
    Property Value
    Type
    System.Double

    CancelEnabled

    Gets or sets the cancel enabled.

    Declaration
    public bool? CancelEnabled { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Boolean>

    The cancel enabled.

    CancelVisibility

    Gets the cancel visibility.

    Declaration
    public Visibility CancelVisibility { get; set; }
    Property Value
    Type Description
    System.Windows.Visibility

    The cancel visibility.

    CancelVisible

    Gets or sets the cancel visible.

    Declaration
    public bool? CancelVisible { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Boolean>

    The cancel visible.

    Description

    Gets or sets the description.

    Declaration
    public string Description { get; set; }
    Property Value
    Type Description
    System.String

    The description.

    FinishEnabled

    Gets or sets the finish enabled.

    Declaration
    public bool? FinishEnabled { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Boolean>

    The finish enabled.

    FinishVisibility

    Gets the finish visibility.

    Declaration
    public Visibility FinishVisibility { get; set; }
    Property Value
    Type Description
    System.Windows.Visibility

    The finish visibility.

    FinishVisible

    Gets or sets the finish visible.

    Declaration
    public bool? FinishVisible { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Boolean>

    The finish visible.

    HelpVisibility

    Gets the help visibility.

    Declaration
    public Visibility HelpVisibility { get; set; }
    Property Value
    Type Description
    System.Windows.Visibility

    The help visibility.

    HelpVisible

    Gets or sets the help visible.

    Declaration
    public bool? HelpVisible { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Boolean>

    The help visible.

    IsSelected

    Gets a value indicating whether this instance is selected.

    Declaration
    public bool IsSelected { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if this instance is selected; otherwise, false.

    NextEnabled

    Gets or sets the next enabled.

    Declaration
    public bool? NextEnabled { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Boolean>

    The next enabled.

    NextPage

    Gets or sets the next page.

    Declaration
    public WizardPage NextPage { get; set; }
    Property Value
    Type Description
    WizardPage

    The next page.

    NextVisibility

    Gets the next visibility.

    Declaration
    public Visibility NextVisibility { get; set; }
    Property Value
    Type Description
    System.Windows.Visibility

    The next visibility.

    NextVisible

    Gets or sets the next visible.

    Declaration
    public bool? NextVisible { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Boolean>

    The next visible.

    PageType

    Gets or sets the type of the page.

    Declaration
    public WizardPageType PageType { get; set; }
    Property Value
    Type Description
    WizardPageType

    The type of the page.

    PreviousPage

    Gets or sets the previous page.

    Declaration
    public WizardPage PreviousPage { get; set; }
    Property Value
    Type Description
    WizardPage

    The previous page.

    Title

    Gets or sets the title.

    Declaration
    public string Title { get; set; }
    Property Value
    Type Description
    System.String

    The title.

    Methods

    Dispose()

    To dispose unused instances

    Declaration
    public void Dispose()

    Events

    Selected

    Bubbling routed event, fired when this page just became the selected page.

    Declaration
    public event RoutedEventHandler Selected
    Event Type
    Type
    System.Windows.RoutedEventHandler

    Selecting

    Cancellable bubbling routed event, fired when this page is about to be replaced by another page as the selected page.

    Declaration
    public event EventHandler<CancelRoutedEventArgs> Selecting
    Event Type
    Type
    System.EventHandler<CancelRoutedEventArgs>

    Unselected

    Bubbling routed event, fired when this page just became unselected.

    Declaration
    public event RoutedEventHandler Unselected
    Event Type
    Type
    System.Windows.RoutedEventHandler

    Unselecting

    Cancellable bubbling routed event, fired before unselecting this page.

    Declaration
    public event EventHandler<CancelRoutedEventArgs> Unselecting
    Event Type
    Type
    System.EventHandler<CancelRoutedEventArgs>

    Implements

    System.IDisposable
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved