Class SelectedPageChangingEventArgs
Provides data for a page changing event.
Inheritance
System.Object
SelectedPageChangingEventArgs
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public class SelectedPageChangingEventArgs : CancelEventArgs
Constructors
SelectedPageChangingEventArgs(WizardPage, WizardPage, WizardDirection)
Initializes a new instance of the SelectedPageChangingEventArgs class.
Declaration
public SelectedPageChangingEventArgs(WizardPage oldPage, WizardPage newPage, WizardDirection direction)
Parameters
WizardPage
oldPage
The selected page. |
WizardPage
newPage
The new page. |
WizardDirection
direction
The direction. |
Properties
Direction
Gets the direction.
Declaration
public WizardDirection Direction { get; }
Property Value
WizardDirection
The direction. |
NewPage
Gets the wizard page to be selected.
Declaration
public WizardPage NewPage { get; }
Property Value
WizardPage
The new page. |
OldPage
Gets the current selected page.
Declaration
public WizardPage OldPage { get; }
Property Value
WizardPage
The current selected page. |