C# 클래스 Nexus.UI.Controls.WizardControl

상속: VerticalTabControl
파일 보기 프로젝트 열기: NexusMods/NexusModManager-4.5 1 사용 예제들

Private Properties

프로퍼티 타입 설명
Cancel_Click void
Next_Click void
Previous_Click void

공개 메소드들

메소드 설명
WizardControl ( ) : System

The default constructor.

보호된 메소드들

메소드 설명
MovePage ( Int32 p_intJumpSize ) : void

This navigates to the page whose index is p_intJumpSize away from the current page's index.

This makes sure that the selected index resulting from the jump is never out of bounds. It also enables/disables buttons and changes button text as appropriate.

OnControlAdded ( System.Windows.Forms.ControlEventArgs e ) : void

Raises the Control.ControlAdded event.

This ensures that the wizard buttons are enabled/disabled correctly.

OnControlRemoved ( System.Windows.Forms.ControlEventArgs e ) : void

Raises the Control.ControlRemoved event.

This ensures that the wizard buttons are enabled/disabled correctly.

비공개 메소드들

메소드 설명
Cancel_Click ( object sender, EventArgs e ) : void

Handles the Control.Click event of the cancel button.

This raises the Cancelled event.

Next_Click ( object sender, EventArgs e ) : void

Handles the Control.Click event of the next button.

This navigates to the next page, if there is one.

Previous_Click ( object sender, EventArgs e ) : void

Handles the Control.Click event of the previous button.

This navigates to the previous page, if there is one.

메소드 상세

MovePage() 보호된 메소드

This navigates to the page whose index is p_intJumpSize away from the current page's index.
This makes sure that the selected index resulting from the jump is never out of bounds. It also enables/disables buttons and changes button text as appropriate.
protected MovePage ( Int32 p_intJumpSize ) : void
p_intJumpSize System.Int32 The number of pages to jump.
리턴 void

OnControlAdded() 보호된 메소드

Raises the Control.ControlAdded event.
This ensures that the wizard buttons are enabled/disabled correctly.
protected OnControlAdded ( System.Windows.Forms.ControlEventArgs e ) : void
e System.Windows.Forms.ControlEventArgs A describing the event arguments.
리턴 void

OnControlRemoved() 보호된 메소드

Raises the Control.ControlRemoved event.
This ensures that the wizard buttons are enabled/disabled correctly.
protected OnControlRemoved ( System.Windows.Forms.ControlEventArgs e ) : void
e System.Windows.Forms.ControlEventArgs A describing the event arguments.
리턴 void

WizardControl() 공개 메소드

The default constructor.
public WizardControl ( ) : System
리턴 System