Dreamine.UI.WinForms 1.0.1
Dreamine.UI.WinForms 사용자 인터페이스 기능과 구성 요소를 제공합니다.
로딩중...
검색중...
일치하는것 없음
BlinkPopupOptions.cs
이 파일의 문서화 페이지로 가기
1using System.Drawing;
2
4
13public sealed class BlinkPopupOptions
14{
23 public string? Title { get; set; }
32 public string? Message { get; set; }
33
42 public string? OkText { get; set; }
43
52 public string? CancelText { get; set; }
53
62 public bool IsModal { get; set; } = true;
63
72 public bool UseBlink { get; set; } = true;
73
82 public Color Color1 { get; set; } = Color.Red;
83
92 public Color Color2 { get; set; } = Color.DarkRed;
93
102 public Color ForegroundColor { get; set; } = Color.Yellow;
103
112 public int BlinkIntervalMs { get; set; } = 600;
113}