New to Telerik UI for WPFStart a free 30-day trial

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 CancelEventArgs.CancelEventArgs.Empty

Constructors

Initializes a new instance of the SelectedPageChangingEventArgs class.

C#
public SelectedPageChangingEventArgs(WizardPage oldPage, WizardPage newPage, WizardDirection direction)
Parameters:oldPageWizardPage

The selected page.

newPageWizardPage

The new page.

directionWizardDirection

The direction.

Properties

Gets the direction.

C#
public WizardDirection Direction { get; }
Property Value:

The direction.

Gets the wizard page to be selected.

C#
public WizardPage NewPage { get; }
Property Value:

The new page.

Gets the current selected page.

C#
public WizardPage OldPage { get; }
Property Value:

The current selected page.