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 |
SelectedStep |
Gets or sets currently selected step name. |
string |
Events
Event | Description | Type |
---|---|---|
NavigationAllowed |
Disables navigation by clicking on step. |
Func<StepNavigationContext, bool> |
SelectedStepChanged |
Occurs after the selected step has changed. |
EventCallback<string> |
Methods
Method | Description | Return | Parameters |
---|---|---|---|
SelectStep |
Sets the active step by the name. | Task | string stepName |
NextStep |
Goes to the next step. | Task | |
PreviousStep |
Goes to the previous step. | Task |