mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-11-04 13:00:20 +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,
 | 
						|
    };
 | 
						|
} |