TelerikStepper
A component that guides users through a sequence of steps with labels or numbered icons. Define steps via StepperSteps using StepperStep and control the current step with Value/ValueChanged. Configure display with StepType (labels or steps) and layout with StepperOrientation (horizontal/vertical). When Linear is true, selection is restricted to the current step and its immediate neighbor(s). Supports mouse and keyboard navigation, focus management, and integration with wizards (tablist semantics when embedded). /// Children: StepperSteps.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class TelerikStepper : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentTelerikStepper
Implements:
Inherited Members
Constructors
public TelerikStepper()
Methods
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Overrides:
public override void Dispose()
Overrides:
Properties
Specifies if the Stepper forbids skipping steps. The default value is false.
[Parameter]
public bool Linear { get; set; }
Defines if the Component shows steps horizontally or vertically. The default value is Horizontal. Supports Vertical and Horizontal orientation.
[Parameter]
public StepperOrientation Orientation { get; set; }
Provides configuration for WebMCP tools, such as a Name to distinguish this Stepper from others on the same page.
[Parameter]
public RenderFragment StepperSettings { get; set; }
Defines the container tag for the Stepper steps. Children: StepperStep tags.
[Parameter]
public RenderFragment StepperSteps { get; set; }
Defines the zero-based index of the current step.
[Parameter]
public int Value { get; set; }
Triggers when the value has changed.
[Parameter]
public EventCallback<int> ValueChanged { get; set; }