2024-08-21 06:30:01 +00:00
|
|
|
namespace AIStudio.Dialogs;
|
2024-06-30 13:26:28 +00:00
|
|
|
|
|
|
|
|
public static class DialogOptions
|
|
|
|
|
{
|
|
|
|
|
public static readonly MudBlazor.DialogOptions FULLSCREEN = new()
|
|
|
|
|
{
|
|
|
|
|
CloseOnEscapeKey = true,
|
|
|
|
|
FullWidth = true, MaxWidth = MaxWidth.Medium,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public static readonly MudBlazor.DialogOptions FULLSCREEN_NO_HEADER = new()
|
|
|
|
|
{
|
|
|
|
|
NoHeader = true,
|
|
|
|
|
CloseOnEscapeKey = true,
|
|
|
|
|
FullWidth = true, MaxWidth = MaxWidth.Medium,
|
|
|
|
|
};
|
2026-04-10 15:11:05 +00:00
|
|
|
|
|
|
|
|
public static readonly MudBlazor.DialogOptions BLOCKING_FULLSCREEN = new()
|
|
|
|
|
{
|
|
|
|
|
BackdropClick = false,
|
|
|
|
|
CloseOnEscapeKey = false,
|
|
|
|
|
FullWidth = true, MaxWidth = MaxWidth.Medium,
|
|
|
|
|
};
|
2024-06-30 13:26:28 +00:00
|
|
|
}
|