Inizio update LAND x problemi GC

This commit is contained in:
Samuele Locatelli
2022-11-04 15:50:40 +01:00
parent 76c49d1eea
commit dbb4fbf9e2
18 changed files with 448 additions and 305 deletions
-32
View File
@@ -26,35 +26,3 @@
</CascadingValue>
</div>
@code {
bool ShowSearch { get; set; } = false;
protected override void OnInitialized()
{
AppMService.EA_ShowSearch += OnShowSearch;
AppMService.EA_HideSearch += OnHideSearch;
}
public void OnShowSearch()
{
ShowSearch = true;
InvokeAsync(() =>
{
StateHasChanged();
});
}
public void OnHideSearch()
{
ShowSearch = false;
InvokeAsync(() =>
{
StateHasChanged();
});
}
public void Dispose()
{
AppMService.EA_ShowSearch -= OnShowSearch;
AppMService.EA_ShowSearch -= OnHideSearch;
}
}