Wizard Class

Source: Controls/Wizard.cs · Assembly: Dew.Math.Controls
UserControlWizard

public class Wizard : UserControl

Represents an extentable wizard control with basic page navigation functionality.

Properties

NameTypeDescription
BackEnabledBooleanGets or sets the enabled state of the back button.
BackTextStringGets or sets the text displayed by the back button.
CancelEnabledBooleanGets or sets the enabled state of the cancel button.
CancelTextStringGets or sets the text displayed by the cancel button.
DockDockStyleGets or sets which edge of the parent container a control is docked to.
HeaderFontFontGets or sets the font used to display the description of a standard page.
HeaderImageImageGets or sets the image displayed on the header of the standard pages.
HeaderTitleFontFontGets or sets the font used to display the title of a standard page.
HelpTextStringGets or sets the text displayed by the cancel button.
HelpVisibleBooleanGets or sets the visible state of the help button.
NextEnabledBooleanGets or sets the enabled state of the Next button.
NextTextStringGets or sets the text displayed by the Next button.
PagesWizardPagesCollectionGets the collection of wizard pages in this tab control.
SelectedPageWizardPageGets or sets the currently-selected wizard page.
WelcomeFontFontGets or sets the font used to display the description of a welcome of finish page.
WelcomeImageImageGets or sets the image displayed on the welcome and finish pages.
WelcomeTitleFontFontGets or sets the font used to display the title of a welcome of finish page.

Methods

NameDescription
BackSwithes backward to previous wizard page.
ctorCreates a new instance of the Dew.Math.Controls.Wizard class.
NextSwithes forward to next wizard page.

Events

NameDescription
AfterSwitchPagesOccurs after the wizard pages are switched, giving the user a chance to setup the new page.
BeforeSwitchPagesOccurs before the wizard pages are switched, giving the user a chance to validate.
CancelOccurs when wizard is canceled, giving the user a chance to validate.
FinishOccurs when wizard is finished, giving the user a chance to do extra stuff.
HelpOccurs when the user clicks the help button.