using System; using Shared; using HDL_ON.UI.CSS; namespace HDL_ON.UI { /// /// 通用LineView /// 分割线View /// public class LineView : FrameLayout { //public LineView() //{ // X = Application.GetRealWidth(16); // Height = Application.GetRealHeight(1); // Width = Application.GetRealWidth(343); // BackgroundColor = CSS_Color.DividingLineColor; //} /// /// /// /// public LineView(int parentHeight) { X = Application.GetRealWidth(16); Height = Application.GetRealHeight(1); Width = Application.GetRealWidth(343); BackgroundColor = CSS_Color.DividingLineColor; Y = parentHeight - Height; } } }