Dreamine.UI.Abstractions 1.0.1
Dreamine.UI.Abstractions 공용 계약과 추상화를 제공합니다.
로딩중...
검색중...
일치하는것 없음
BlinkPopupOptions.cs
이 파일의 문서화 페이지로 가기
1using System.Windows;
2using System.Windows.Media;
3
5
14public sealed class BlinkPopupOptions
15{
24 public string? Title { get; set; }
25
34 public string? Message { get; set; }
35
44 public object? Content { get; set; }
45
54 public string? OkText { get; set; }
55
64 public string? CancelText { get; set; }
65
74 public bool IsModal { get; set; } = true;
75
84 public bool TopMost { get; set; } = true;
85
94 public bool Fullscreen { get; set; } = false;
95
104 public Size? FixedSize { get; set; } = null;
105
114 public bool UseBlink { get; set; } = true;
115
124 public bool UseContentCard { get; set; } = true;
125
134 public Color Color1 { get; set; } = Colors.Red;
135
144 public Color Color2 { get; set; } = Colors.DarkRed;
145
154 public Color ForegroundColor { get; set; } = Colors.Yellow;
155
164 public double Opacity1 { get; set; } = 1.0;
165
174 public double Opacity2 { get; set; } = 0.25;
175
184 public int BlinkIntervalMs { get; set; } = 600;
185
194 public int BlinkRepeatCount { get; set; } = 0;
195
204 public double TitleFontSize { get; set; } = 40;
205
214 public double MessageFontSize { get; set; } = 22;
215
224 public bool BlockAltF4 { get; set; } = true;
225
234 public bool RequireAuthOnOk { get; set; } = false;
235
244 public bool RequireAuthOnCancel { get; set; } = false;
245
254 public object? AuthViewModel { get; set; }
255}