mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-06-27 15:56:28 +00:00
23 lines
604 B
C#
23 lines
604 B
C#
namespace AIStudio.Dialogs;
|
|
|
|
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,
|
|
};
|
|
|
|
public static readonly MudBlazor.DialogOptions BLOCKING_FULLSCREEN = new()
|
|
{
|
|
BackdropClick = false,
|
|
CloseOnEscapeKey = false,
|
|
};
|
|
} |