Provides data for a page changing event.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Navigation.dll
Syntax:
C#
public class SelectedPageChangingEventArgs : CancelEventArgs
Inheritance: objectEventArgsCancelEventArgsSelectedPageChangingEventArgs
Inherited Members
Constructors
Initializes a new instance of the SelectedPageChangingEventArgs class.
C#
public SelectedPageChangingEventArgs(WizardPage oldPage, WizardPage newPage, WizardDirection direction)
The selected page.
newPageWizardPageThe new page.
directionWizardDirectionThe direction.
Properties
Gets the direction.
C#
public WizardDirection Direction { get; }
The direction.
Gets the wizard page to be selected.
C#
public WizardPage NewPage { get; }
The new page.
Gets the current selected page.
C#
public WizardPage OldPage { get; }
The current selected page.