Files
mapo-core/MP-TAB3/Pages/Controls.razor.cs
T
2024-02-26 20:17:35 +01:00

51 lines
949 B
C#

namespace MP_TAB3.Pages
{
public partial class Controls
{
#region Public Methods
#endregion Public Methods
#region Protected Properties
#endregion Protected Properties
#region Protected Methods
protected async Task ForceReload()
{
IsLoading = true;
await Task.Delay(50);
IsLoading = false;
}
protected override async Task OnInitializedAsync()
{
await base.OnInitializedAsync();
await ReloadData();
}
protected void SetMacc(string selIdxMacc)
{
IdxMaccSubSel = selIdxMacc;
}
#endregion Protected Methods
#region Private Fields
private string IdxMaccSubSel = "";
private bool IsLoading = false;
#endregion Private Fields
#region Private Methods
#endregion Private Methods
}
}