using System; namespace SK.Framework { /// /// 蓝湖界面UI元素 /// [Serializable] public class LanHuViewElement { /// /// 图层名称 /// public string name; /// /// 位置x /// public string x; /// /// 位置y /// public string y; /// /// 宽度 /// public string width; /// /// 高度 /// public string height; /// /// 不透明度 /// public string opacity; /// /// 像素倍数 /// public string pixel = "x1"; /// /// 构造函数 /// public LanHuViewElement(string name, string x, string y, string width, string height, string opacity, string pixel) { this.name = name; this.x = x; this.y = y; this.width = width; this.height = height; this.opacity = opacity; this.pixel = pixel; } } }