Class WizardPageSelectionChangeEventArgs
Argument for the SelectedPageChanging event.
Inherited Members
Namespace: Syncfusion.Windows.Tools.Controls
Assembly: Syncfusion.Tools.Wpf.dll
Syntax
public class WizardPageSelectionChangeEventArgs : CancelRoutedEventArgs
Constructors
WizardPageSelectionChangeEventArgs(WizardPage, WizardPage, WizardPageSelectionChangeCause, RoutedEvent, Object)
Initializes a new instance of the WizardPageSelectionChangeEventArgs class.
Declaration
public WizardPageSelectionChangeEventArgs(WizardPage newPage, WizardPage oldPage, WizardPageSelectionChangeCause cause, RoutedEvent routedEvent, object source)
Parameters
Type | Name | Description |
---|---|---|
WizardPage | newPage | The new page. |
WizardPage | oldPage | The old page. |
WizardPageSelectionChangeCause | cause | The cause. |
System.Windows.RoutedEvent | routedEvent | The routed event. |
System.Object | source | The source. |
Properties
Cause
Gets or sets the cause.
Declaration
public WizardPageSelectionChangeCause Cause { get; set; }
Property Value
Type | Description |
---|---|
WizardPageSelectionChangeCause | The cause. |
NewPage
Gets or sets the new page.
Declaration
public WizardPage NewPage { get; set; }
Property Value
Type | Description |
---|---|
WizardPage | The new page. |
OldPage
Gets or sets the old page.
Declaration
public WizardPage OldPage { get; set; }
Property Value
Type | Description |
---|---|
WizardPage | The old page. |