22 lines
		
	
	
		
			438 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			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();
 | |
|         }
 | |
|     }
 | |
| } | 
