Files
mapo-core/MP-TAB3/Pages/Controls.razor.cs
2025-09-09 17:14:58 +02:00

22 lines
460 B
C#

namespace MP_TAB3.Pages
{
public partial class Controls
{
#region Protected Methods
protected async Task ForceReload()
{
IsLoading = true;
await Task.Delay(5);
IsLoading = false;
}
protected override async Task OnInitializedAsync()
{
await base.OnInitializedAsync();
await ReloadData();
}
#endregion Protected Methods
}
}