lixiaojun
2025-03-20 5066a3d90ab19f8380dbb4159d57b0b8e3f17649
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
34
35
36
37
38
39
40
namespace Yw.WinFrmUI.Hydro
{
    /// <summary>
    /// 
    /// </summary>
    public class StyleNode2dL3d : Style2dL3d
    {
        /// <summary>
        /// 
        /// </summary>
        public StyleNode2dL3d() { }
 
        /// <summary>
        /// 
        /// </summary>
        public StyleNode2dL3d(StyleNode2dL3d rhs)
        {
            this.Normal = new StylePoint2dL3d(rhs.Normal);
            this.Hovered = new StylePoint2dL3d(rhs.Hovered);
            this.Selected = new StylePoint2dL3d(rhs.Selected);
        }
 
        /// <summary>
        /// 正常
        /// </summary>
        public StylePoint2dL3d Normal { get; set; }
 
        /// <summary>
        /// 悬停
        /// </summary>
        public StylePoint2dL3d Hovered { get; set; }
 
        /// <summary>
        /// 选择
        /// </summary>
        public StylePoint2dL3d Selected { get; set; }
 
 
    }
}