JLChen
2020-11-23 8c1bf42c5fca66625b59728006bd47bae0b6a3ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using Shared;
using HDL_ON.UI.CSS;
 
namespace HDL_ON.UI
{
    /// <summary>
    /// 通用LineView
    /// </summary>
    public class LineView : FrameLayout
    {
        public LineView()
        {
            X = Application.GetRealWidth(16);
            Height = Application.GetRealHeight(1);
            Width = Application.GetRealWidth(343);
            BackgroundColor = CSS_Color.DividingLineColor;
        }
    }
}