Class Wizard.StepChangeEventArgs
System.EventArgs for Wizard.WizardStep events.
Inheritance
System.Object
System.EventArgs
Wizard.StepChangeEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Terminal.Gui
Assembly: Terminal.Gui.dll
Syntax
public class StepChangeEventArgs : EventArgs
Constructors
| Improve this Doc View SourceStepChangeEventArgs(Wizard.WizardStep, Wizard.WizardStep)
Initializes a new instance of Wizard.StepChangeEventArgs
Declaration
public StepChangeEventArgs(Wizard.WizardStep oldStep, Wizard.WizardStep newStep)
Parameters
Type | Name | Description |
---|---|---|
Wizard.WizardStep | oldStep | The current Wizard.WizardStep. |
Wizard.WizardStep | newStep | The new Wizard.WizardStep. |
Properties
| Improve this Doc View SourceCancel
Event handlers can set to true before returning to cancel the step transition.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
NewStep
The Wizard.WizardStep the Wizard is changing to or has changed to.
Declaration
public Wizard.WizardStep NewStep { get; }
Property Value
Type | Description |
---|---|
Wizard.WizardStep |
OldStep
The current (or previous) Wizard.WizardStep.
Declaration
public Wizard.WizardStep OldStep { get; }
Property Value
Type | Description |
---|---|
Wizard.WizardStep |