C# Класс Nexus.UI.Controls.WizardControl

Наследование: VerticalTabControl
Показать файл Открыть проект Примеры использования класса

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