duheng
2024-09-26 88c13046c69ebeb0bc323c8d81501f5933f5a81f
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
namespace Yw.WinFrmUI.Phart
{
    public class XtrBase
    {
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 颜色
        /// </summary>
        public Color Color { get; set; }
 
        /// <summary>
        /// 标签
        /// </summary>
        public object Tag { get; set; }
 
        /// <summary>
        /// 可见性
        /// </summary>
        public bool Visible { get; set; }
 
    }
}