Blazorise Steps component
Steps is a navigation bar that guides users through the steps of a task.
API
Parameters
| Parameter | Description | Type | Default |
|---|---|---|---|
ChildContent |
Specifies the content to be rendered inside this Steps. |
RenderFragment | null |
Content |
Template for placing the StepPanel items. |
RenderFragment | null |
Items |
Template for placing the Step items. |
RenderFragment | null |
RenderMode |
Specifies how the steps content will be rendered. Possible values: |
StepsRenderMode | StepsRenderMode.Default |
SelectedStep |
Specifies the currently selected step name. |
string |
Events
| Event | Description | Type |
|---|---|---|
NavigationAllowed |
Disables navigation by clicking on step. |
Func<StepNavigationContext, Task<bool>> |
SelectedStepChanged |
Occurs after the selected step has changed. |
EventCallback<string> |
Methods
| Method | Description | Return | Parameters |
|---|---|---|---|
NextStep |
Goes to the next step. | Task<bool> | |
PreviousStep |
Goes to the previous step. | Task<bool> | |
SelectStep |
Sets the active step by the name. | Task<bool> | string stepName |