WizardNavigationEventArgs Class

Definition

Provides data for the CurrentStepIndex property and the NextStepIndex property for navigation in wizard controls.

public ref class WizardNavigationEventArgs : EventArgs
public class WizardNavigationEventArgs : EventArgs
type WizardNavigationEventArgs = class
    inherit EventArgs
Public Class WizardNavigationEventArgs
Inherits EventArgs
Inheritance
WizardNavigationEventArgs

Remarks

The WizardNavigationEventArgs class provides the data needed for the various navigation events in a Wizard control. For example, the NextButtonClick event of a Wizard control uses the WizardNavigationEventArgs object to indicate the CurrentStepIndex and NextStepIndex for the control.

For more information about how to handle events, see Handling and Raising Events.

Constructors

WizardNavigationEventArgs(Int32, Int32)

Initializes a new instance of the WizardNavigationEventArgs class.

Properties

Cancel

Gets or sets a value indicating whether the navigation to the next step in the wizard should be canceled.

CurrentStepIndex

Gets the index of the WizardStep object currently displayed in the Wizard control.

NextStepIndex

Gets a value that represents the index of the WizardStep object that the Wizard control will display next.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also