Class WizardStep
The class for the wizard step component.
Inheritance
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class WizardStep : ComponentBase, IWizardStep, IDisposable
Constructors
WizardStep()
Declaration
public WizardStep()
Properties
Content
Defines the content of the step.
Declaration
public RenderFragment Content { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
Disabled
Specifies if the step is disabled. If a step is disabled, users cannot click and select it.
Declaration
public bool Disabled { get; set; }
Property Value
System.Boolean
|
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.
Declaration
public object Icon { get; set; }
Property Value
System.Object
|
Label
Defines the label of the step.
Declaration
public string Label { get; set; }
Property Value
System.String
|
OnChange
Triggers before the step change. The handler receives an object of type WizardStepChangeEventArgs.
Declaration
public EventCallback<WizardStepChangeEventArgs> OnChange { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<WizardStepChangeEventArgs>
|
Optional
Specifies if the step is optional. If "true", the step will show a label "(Optional)" to visually indicate that it is not mandatory.
Declaration
public bool Optional { get; set; }
Property Value
System.Boolean
|
StepTemplate
Use the StepTemplate to control the rendering of the Stepper Step.
Declaration
public RenderFragment StepTemplate { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
Text
Defines the step indicator text.
Declaration
public string Text { get; set; }
Property Value
System.String
|
Valid
Specifies if the step is valid. Step validation serves as a visual indication whether a step is valid or not. It does not prevent the users from navigating between steps. Default value is "null".
Declaration
public Nullable<bool> Valid { get; set; }
Property Value
System.Nullable<System.Boolean>
|
Methods
Dispose()
Declaration
public void Dispose()
OnInitialized()
Declaration
protected override void OnInitialized()
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
System.Threading.Tasks.Task
|
SetParametersAsync(ParameterView)
Declaration
public override Task SetParametersAsync(ParameterView parameters)
Parameters
Microsoft.AspNetCore.Components.ParameterView
parameters
|
Returns
System.Threading.Tasks.Task
|