Search Results for

    Show / Hide Table of Contents

    Class Wizard.StepChangeEventArgs

    EventArgs for Wizard.WizardStep events.
    Inheritance
    object
    EventArgs
    Wizard.StepChangeEventArgs
    Inherited Members
    EventArgs.Empty
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Terminal.Gui
    Assembly: Terminal.Gui.dll
    Syntax
    public class Wizard.StepChangeEventArgs : EventArgs

    Constructors

    | Edit this page View Source

    StepChangeEventArgs(WizardStep, 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

    | Edit this page View Source

    Cancel

    Event handlers can set to true before returning to cancel the step transition.
    Declaration
    public bool Cancel { get; set; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    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
    | Edit this page View Source

    OldStep

    The current (or previous) Wizard.WizardStep.
    Declaration
    public Wizard.WizardStep OldStep { get; }
    Property Value
    Type Description
    Wizard.WizardStep
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX