tzy
2021-05-14 0fa1534827bd21d763216550d11006fc1441c6cb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using Shared;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace HDL_ON.Stan
{
    /// <summary>
    /// 平凡普通的控件,基本只是用来显示✩(正常文本字体颜色(0xFF798394),文字向左靠齐)
    /// </summary>
    public class NormalViewControl : ButtonCtrBase
    {
        /// <summary>
        /// 平凡普通的控件,基本只是用来显示(正常文本字体颜色(0xFF798394),文字向左靠齐)
        /// </summary>
        /// <param name="i_Width">宽度</param>
        /// <param name="i_Height">高度</param>
        /// <param name="real">是否计算真实值</param>
        public NormalViewControl(int i_Width, int i_Height, bool real)
        {
            this.InitSize(i_Width, i_Height, real);
        }
    }
}