demo/Pages/Form/StepForm/StepForm.razor.cs
2024-06-21 16:48:24 +08:00

22 lines
438 B
C#

namespace antblazorpro.Pages.Form
{
public partial class StepForm
{
private int _current;
public void Next()
{
// todo: Not re-rendered
_current += 1;
StateHasChanged();
}
public void Prev()
{
// todo: Not re-rendered
if (_current <= 0) return;
_current -= 1;
StateHasChanged();
}
}
}