using System; using HDL_ON.UI.CSS; using Shared; namespace HDL_ON.UI { /// /// 通用确认按钮 /// 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; } } }