mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 23:09:07 +00:00
17 lines
446 B
C#
17 lines
446 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,
|
|
};
|
|
} |