Files
mapo-core/MP-TAB3/Pages/Controls.razor.cs
T
Samuele E. Locatelli 8f7ebec2c0 TAB3:
- fix reload post controlli
- typo e refactoring vari
2025-03-08 09:06:27 +01:00

35 lines
723 B
C#

namespace MP_TAB3.Pages
{
public partial class Controls
{
#region Private Fields
private string IdxMaccSubSel = "";
private bool IsLoading = false;
#endregion Private Fields
#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();
}
protected void SetMacc(string selIdxMacc)
{
IdxMaccSubSel = selIdxMacc;
}
#endregion Protected Methods
}
}