Dreamine.UI.Maui 1.0.1
Windows(WinUI)의 네이티브 `CheckBox`는 `WidthRequest`로 줄일 수 없는 거대한 최소 너비를 가져서 라벨과의 간격이 벌어지는 문제가 있어, 처음부터 직접 그려서 만들었습니다.
로딩중...
검색중...
일치하는것 없음
BlinkPopupOptions.cs
이 파일의 문서화 페이지로 가기
2
11public sealed class BlinkPopupOptions
12{
21 public string? Title { get; set; }
30 public string? Message { get; set; }
39 public string? OkText { get; set; }
48 public string? CancelText { get; set; }
57 public bool UseBlink { get; set; } = true;
66 public Color Color1 { get; set; } = Colors.Red;
75 public Color Color2 { get; set; } = Colors.DarkRed;
84 public Color ForegroundColor { get; set; } = Colors.Yellow;
93 public int BlinkIntervalMs { get; set; } = 600;
94}