old_flsystem/应用/UserFission/Entitys/Controls.cs

53 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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