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

Provides data for a page changed event.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.Navigation.dll

Syntax:

C#
public class SelectedPageChangedEventArgs : EventArgs

Inheritance: objectEventArgsSelectedPageChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the SelectedPageChangedEventArgs class.

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

The old page.

newPageWizardPage

The new page.

directionWizardDirection

The direction.

Properties

Gets the direction.

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

The direction.

Gets the new page.

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

The new page.

Gets the old page.

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

The old page.