Class SelectedPageChangedEventArgs
Provides data for a page changed event.
Inheritance
System.Object
SelectedPageChangedEventArgs
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public class SelectedPageChangedEventArgs : EventArgs
Constructors
SelectedPageChangedEventArgs(WizardPage, WizardPage, WizardDirection)
Initializes a new instance of the SelectedPageChangedEventArgs class.
Declaration
public SelectedPageChangedEventArgs(WizardPage oldPage, WizardPage newPage, WizardDirection direction)
Parameters
WizardPage
oldPage
The old 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 new page.
Declaration
public WizardPage NewPage { get; }
Property Value
WizardPage
The new page. |
OldPage
Gets the old page.
Declaration
public WizardPage OldPage { get; }
Property Value
WizardPage
The old page. |