黄学彪
2020-12-16 0d9f64668fd7350d6a21fd157e32009a96d98134
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Shared.Phone
{
    /// <summary>
    /// 平凡普通的控件,基本只是用来显示✩
    /// </summary>
    public class NormalViewControl : ButtonBase
    {
        /// <summary>
        /// 平凡普通的控件,基本只是用来显示(正常文本字体颜色,文字向左靠齐)
        /// </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);
        }
 
        /// <summary>
        /// 平凡普通的控件,基本只是用来显示(正常文本字体颜色,文字向左靠齐),高度为标准高度
        /// </summary>
        /// <param name="i_Width">宽度</param>
        /// <param name="real">是否计算真实值</param>
        public NormalViewControl(int i_Width, bool real)
        {
            this.InitSize(i_Width, real);
        }
    }
}