4 writes to _openPageDialog
Aspire.Dashboard (4)
Components\Layout\MainLayout.razor.cs (4)
188
_openPageDialog
= await DialogService.ShowDialogAsync<HelpDialog>(parameters).ConfigureAwait(true);
193
_openPageDialog
= null;
228
_openPageDialog
= await DialogService.ShowPanelAsync<SettingsDialog>(parameters).ConfigureAwait(true);
232
_openPageDialog
= await DialogService.ShowDialogAsync<SettingsDialog>(parameters).ConfigureAwait(true);
6 references to _openPageDialog
Aspire.Dashboard (6)
Components\Layout\MainLayout.razor.cs (6)
178
if (
_openPageDialog
is not null)
180
if (Equals(
_openPageDialog
.Id, HelpDialogId))
185
await
_openPageDialog
.CloseAsync();
213
if (
_openPageDialog
is not null)
215
if (Equals(
_openPageDialog
.Id, SettingsDialogId))
220
await
_openPageDialog
.CloseAsync();