ClassWizardStep
The class for the wizard step component.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class WizardStep : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseWizardStep
Implements:
Inherited Members
Constructors
WizardStep()
Declaration
public WizardStep()
Properties
Content
Defines the content of the step.
Declaration
[Parameter]
public RenderFragment Content { get; set; }
Property Value
Disabled
Specifies if the step is disabled. If a step is disabled, users cannot click and select it.
Icon
Specifies an icon rendered in the step. You can use either a predefined Telerik Icon or a custom one. Refer to Icons - Documentation for more information on how icons work.
Label
Defines the label of the step.
OnChange
Triggers before the step change. The handler receives an object of type WizardStepChangeEventArgs.
Declaration
[Parameter]
public EventCallback<WizardStepChangeEventArgs> OnChange { get; set; }
Property Value
Optional
Specifies if the step is optional. If "true", the step will show a label "(Optional)" to visually indicate that it is not mandatory.
StepTemplate
Use the StepTemplate to control the rendering of the Stepper Step.
Declaration
[Parameter]
public RenderFragment StepTemplate { get; set; }
Property Value
Text
Defines the step indicator text.
Methods
Dispose()
Declaration
public void Dispose()
Implements
OnInitialized()
Declaration
protected override void OnInitialized()
Overrides
SetParametersAsync(ParameterView)
Declaration
public override Task SetParametersAsync(ParameterView parameters)
Parameters
parameters
Returns
Overrides