New file |
| | |
| | | using System; |
| | | using HDL_ON.UI.CSS; |
| | | using Shared; |
| | | |
| | | namespace HDL_ON.UI |
| | | { |
| | | /// <summary> |
| | | /// 通用确认按钮 |
| | | /// </summary> |
| | | public class ConfirmButton : Button |
| | | { |
| | | public ConfirmButton() |
| | | { |
| | | Gravity = Gravity.CenterHorizontal; |
| | | Width = Application.GetRealWidth(220); |
| | | Height = Application.GetRealWidth(44); |
| | | BackgroundColor = CSS_Color.MainColor; |
| | | TextAlignment = TextAlignment.Center; |
| | | TextColor = CSS_Color.MainBackgroundColor; |
| | | TextSize = CSS_FontSize.SubheadingFontSize; |
| | | IsBold = true; |
| | | Radius = (uint)Application.GetRealWidth(22); |
| | | BorderColor = 0x00000000; |
| | | BorderWidth = 0; |
| | | |
| | | } |
| | | } |
| | | } |