using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace UserFission.Entitys { /// /// 海报数据信息 /// public class Controls { /// /// 公共属性控件名称 /// public string C_Name { get; set; } /// /// 公共属性控件坐标 /// public Point C_Point { get; set; } /// /// 公共属性控件大小 /// public Size C_Size { get; set; } /// /// 公共隐藏属性(这里只有label用到) /// public bool C_Visible { get; set; } /// /// Tag属性 /// public string C_Tag { get; set; } /// /// 文本属性字体样式 /// public string T_FontJson { get; set; } /// /// 文本属性控件前景色 /// public Color T_ForeColor { get; set; } /// /// 字体的宽度 /// public int T_Width { get; set; } /// /// 字体的高度 /// public int T_Height { get; set; } } }