Files
radzen-blazor/Radzen.Blazor/StepsTransition.cs
2026-04-01 11:30:25 +03:00

23 lines
605 B
C#

namespace Radzen;
/// <summary>
/// Specifies the transition animation used when switching between steps in a <see cref="Radzen.Blazor.RadzenSteps" /> component.
/// </summary>
public enum StepsTransition
{
/// <summary>
/// No transition animation. Step content changes instantly (default behavior).
/// </summary>
None,
/// <summary>
/// Fade-in transition. The new step content fades in.
/// </summary>
Fade,
/// <summary>
/// Slide transition. The new step content slides in horizontally. Automatically respects RTL direction.
/// </summary>
Slide
}