22 lines
460 B
C#
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
|
|
}
|
|
} |