New to Telerik UI for WinFormsStart a free 30-day trial

Properties, Methods and Events

Updated on Sep 16, 2025

You can find listed below all properties, methods and events related to RadWizard.

Properties

PropertyDescription
WizardElementGets the RadWizardElement which encapsulates the UI representation and functionality of the control.
ModeGets or sets the mode of the control.
EnableAeroStyleGets or sets a value indication wether the Aero style should apply when the control is in Wizard Aero mode.
PagesGets the pages collection.
WelcomePageGets or sets the welcome page.
CompletionPageGets or sets the completion page.
SelectedPageGets or sets the selected page.
CommandAreaGets the command area element.
CommandAreaHeightGets or sets the height of the command area. Negative value makes the command area autosize.
PageHeaderElementGets the page header element.
PageHeaderHeightGets or sets the height of the page header. Negative value makes the page header autosize.
WelcomeImageElementGets the element containing the image of the welcome pages.
CompletionImageElementGets the element containing the image of the completion pages.
WelcomeImageGets or sets the image of the welcome pages.
HideWelcomeImageGets or sets a value indicating whether the image of the welcome pages should be visible.
WelcomeImageLayoutGets or sets the layout of the welcome pages image.
WelcomeImageBackgroundShapeGets or sets the background image shape of the welcome pages.
CompletionImageGets or sets the image of the completion pages.
HideCompletionImageGets or sets a value indicating whether the image of the completion pages should be visible.
CompletionImageLayoutGets or sets the layout of the completion pages image.
CompletionImageBackgroundShapeGets or sets the background image shape of the completion pages.
PageTitleTextVisibilityGets or sets the visibility of the page header's title element.
PageHeaderTextVisibilityGets or sets the visibility of the page header's header element.
PageHeaderIconGets or sets the icon of the page header.
PageHeaderIconAlignmentGets or sets the alignment of the page header's icon.
BackButtonGets the command area's back button.
NextButtonGets the command area's next button.
CancelButtonGets the command area's cancel button.
FinishButtonGets the command area's finish button.
HelpButtonGets the command area's help button.

Methods

MethodDescription
SelectNextPageSelects next wizard page.
SelectPreviousPageSelects previous wizard page.

Events

EventDescription
ModeChangingFires before the mode of RadWizard is changed. It is cancelable event. The arguments of the event provide the current and the next WizardMode.
ModeChangedFires after the mode of RadWizard is changed. The arguments of the event provide the previous and the current WizardMode.
NextFires when the Next command button is clicked. It is cancelable event.
PreviousFires when the Back command button is clicked. It is cancelable event.
SelectedPageChangingFires before the selected page of RadWizard is changed. It is cancelable event. The arguments of the event provide the selected page of the control and the page to be selected.
SelectedPageChangedFires after the selected page of RadWizard is changed. The arguments of the event provide the previous selected page and the selected page of the control.
FinishFires when the Finish command button is clicked.
CancelFires when the Cancel command button is clicked.
HelpFires when the Help command button is clicked.

Below is an example of using the Next event of RadWizard to choose the page to be selected when the user clicks the Next command button. The example demonstrates how to cancel the transition from the second to the third page and to select the first page of the control:

Subscribe to the Next event

C#
this.radWizard1.Next += new WizardCancelEventHandler(radWizard1_Next);

Handle the Next event

C#
private void radWizard1_Next(object sender, WizardCancelEventArgs e)
{
    if (this.radWizard1.SelectedPage == this.radWizard1.Pages[1])
    {
        e.Cancel = true;
        this.radWizard1.SelectedPage = this.radWizard1.Pages[0];
    }
}

See Also

In this article
PropertiesMethodsEventsSee Also
Not finding the help you need?
Contact Support