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

A multi-step wizard with integrated stepper, navigation, and optional pager. Define steps with WizardSteps using WizardStep; customize action buttons via WizardButtons and stepper behavior through WizardSettings (WizardStepperSettings). Control the active step with Value/ValueChanged and placement via StepperPosition; toggle pager with ShowPager and handle completion using OnFinish. Children: WizardSteps, WizardButtons, WizardSettings.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class TelerikWizard : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

Inheritance: objectComponentBaseBaseComponentTelerikWizard

Implements: IComponentIDisposableIHandleAfterRenderIHandleEvent

Inherited Members BaseComponent.ShouldRender()BaseComponent.OnInitializedAsync()BaseComponent.OnAfterRenderAsync(bool)BaseComponent.Dispose()BaseComponent.InitLocalizer()BaseComponent.ThrowIfParameterIsNull(object, string)BaseComponent.HaveOptionsChanged(IDictionary<string, object>, IDictionary<string, object>)BaseComponent.GetClassString(params string[])BaseComponent.InvokeAsync<T>(string, params object[])BaseComponent.InvokeAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidAsync(string, params object[])BaseComponent.InvokeVoidAsyncWithoutAwait(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidComponentMethodAsync(string, params object[])BaseComponent.InvokeComponentVoidMethodAsync(string, object)BaseComponent.InvokeDisposeAsync()BaseComponent.StateHasChanged()BaseComponent.RootComponentBaseComponent.ClassComponentBase.OnInitialized()ComponentBase.OnParametersSet()ComponentBase.OnAfterRender(bool)ComponentBase.InvokeAsync(Action)ComponentBase.InvokeAsync(Func<Task>)ComponentBase.DispatchExceptionAsync(Exception)...

Constructors

C#
public TelerikWizard()

Methods

C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters:__builderRenderTreeBuilder

Overrides: ComponentBase.BuildRenderTree(RenderTreeBuilder)

C#
protected override Task OnParametersSetAsync()
Returns:

Task

Overrides: ComponentBase.OnParametersSetAsync()

C#
public override Task SetParametersAsync(ParameterView parameters)
Parameters:parametersParameterViewReturns:

Task

Overrides: ComponentBase.SetParametersAsync(ParameterView)

Properties

Defines the height of the component as a CSS value.

C#
[Parameter]
public string Height { get; set; }

Triggers when the done button is clicked.

C#
[Parameter]
public EventCallback OnFinish { get; set; }
C#
public bool ShouldRenderContent { get; set; }

Specifies if the page label should be visible. Default value is true.

C#
[Parameter]
public bool ShowPager { get; set; }

Specifies the stepper position in the wizard. Default value is Top.

C#
[Parameter]
public WizardStepperPosition StepperPosition { get; set; }

Sets the zero-based index of the current step.

C#
[Parameter]
public int Value { get; set; }

Triggers when the value has changed. The handler receives the new Wizard value (step index) as an event argument.

C#
[Parameter]
public EventCallback<int> ValueChanged { get; set; }

Defines the width of the component as a CSS value.

C#
[Parameter]
public string Width { get; set; }

Defines the container tag for the Wizard buttons. This configuration overrides the whole rendering of the bottom-right section of the Wizard, including the built-in buttons and thus provides a full control over it. You can use the context to get the step number and adjust the buttons accordingly.

C#
[Parameter]
public RenderFragment<int> WizardButtons { get; set; }

Defines the container tag for additional Wizard settings. See WizardStepperSettings. Children: WizardStepperSettings.

C#
[Parameter]
public RenderFragment WizardSettings { get; set; }

Defines the container tag for the Wizard steps. See WizardStep. Children: WizardStep.

C#
[Parameter]
public RenderFragment WizardSteps { get; set; }