C# Class NanoByte.Common.Controls.Wizard

A base class for creating wizard interfaces. Manages pages as a stack of UserControls.
Inheritance: System.Windows.Forms.Form
Afficher le fichier Open project: nano-byte/common

Protected Properties

Свойство Type Description
PageStack Stack

Méthodes publiques

Méthode Description
Wizard ( ) : System

Creates a new wizard.

Méthodes protégées

Méthode Description
PopPage ( ) : void

Removes the current wizard page form the PageStack and displays the previous one.

PushPage ( [ page ) : void

Displays a new wizard page and adds it to the PageStack.

Private Methods

Méthode Description
ShowPage ( Control page ) : void

Method Details

PopPage() protected méthode

Removes the current wizard page form the PageStack and displays the previous one.
protected PopPage ( ) : void
Résultat void

PushPage() protected méthode

Displays a new wizard page and adds it to the PageStack.
protected PushPage ( [ page ) : void
page [ The page to display and add.
Résultat void

Wizard() public méthode

Creates a new wizard.
public Wizard ( ) : System
Résultat System

Property Details

PageStack protected_oe property

The wizard page history with the currently visible page on top.
protected Stack PageStack
Résultat Stack