C# 클래스 NanoByte.Common.Controls.Wizard

A base class for creating wizard interfaces. Manages pages as a stack of UserControls.
상속: System.Windows.Forms.Form
파일 보기 프로젝트 열기: nano-byte/common

보호된 프로퍼티들

프로퍼티 타입 설명
PageStack Stack

공개 메소드들

메소드 설명
Wizard ( ) : System

Creates a new wizard.

보호된 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
ShowPage ( Control page ) : void

메소드 상세

PopPage() 보호된 메소드

Removes the current wizard page form the PageStack and displays the previous one.
protected PopPage ( ) : void
리턴 void

PushPage() 보호된 메소드

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

Wizard() 공개 메소드

Creates a new wizard.
public Wizard ( ) : System
리턴 System

프로퍼티 상세

PageStack 보호되어 있는 프로퍼티

The wizard page history with the currently visible page on top.
protected Stack PageStack
리턴 Stack