namespace Yw.WinFrmUI.Hydro
{
///
///
///
public class StyleNode2dL3d
{
///
///
///
public StyleNode2dL3d() { }
///
///
///
public StyleNode2dL3d(StyleNode2dL3d rhs)
{
this.Normal = new StylePoint2dL3d(rhs.Normal);
this.Hovered = new StylePoint2dL3d(rhs.Hovered);
this.Selected = new StylePoint2dL3d(rhs.Selected);
}
///
/// 正常
///
public StylePoint2dL3d Normal { get; set; }
///
/// 悬停
///
public StylePoint2dL3d Hovered { get; set; }
///
/// 选择
///
public StylePoint2dL3d Selected { get; set; }
}
}