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 Selected
Declaration
public SelectedPageChangingEventArgs(WizardPage oldPage, WizardPage newPage, WizardDirection direction)
Parameters
Wizard The selected page. |
Wizard The new page. |
Wizard The direction. |
Properties
Direction
Gets the direction.
Declaration
public WizardDirection Direction { get; }
Property Value
Wizard The direction. |
NewPage
Gets the wizard page to be selected.
Declaration
public WizardPage NewPage { get; }
Property Value
Wizard The new page. |
OldPage
Gets the current selected page.
Declaration
public WizardPage OldPage { get; }
Property Value
Wizard The current selected page. |