AI-Studio/app/MindWork AI Studio/Dialogs/DialogOptions.cs

17 lines
446 B
C#
Raw Normal View History

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,
};
}