ClassTelerikWizard
The class for the wizard component.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class TelerikWizard : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentTelerikWizard
Implements:
Inherited Members
Constructors
TelerikWizard()
Declaration
public TelerikWizard()
Properties
Height
Defines the height of the component as a CSS value.
OnFinish
Triggers when the done button is clicked.
Declaration
[Parameter]
public EventCallback OnFinish { get; set; }
Property Value
StepperPosition
Specifies the stepper position in the wizard. Default value is Top.
Declaration
[Parameter]
public WizardStepperPosition StepperPosition { get; set; }
Property Value
Value
Sets the zero-based index of the current step.
ValueChanged
Triggers when the value has changed. The handler receives the new Wizard value (step index) as an event argument.
Declaration
[Parameter]
public EventCallback<int> ValueChanged { get; set; }
Property Value
Width
Defines the width of the component as a CSS value.
WizardButtons
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.
Declaration
[Parameter]
public RenderFragment<int> WizardButtons { get; set; }
Property Value
WizardSettings
Defines the container tag for additional Wizard settings. See WizardStepperSettings.
Declaration
[Parameter]
public RenderFragment WizardSettings { get; set; }
Property Value
WizardSteps
Defines the container tag for the Wizard steps. See WizardStep.
Declaration
[Parameter]
public RenderFragment WizardSteps { get; set; }
Property Value
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builder
Overrides
SetParametersAsync(ParameterView)
Declaration
public override Task SetParametersAsync(ParameterView parameters)
Parameters
parameters
Returns
Overrides