using System.ComponentModel; namespace ShrlAlgo.RvKits.RvCommon; public enum AlignType { [Description("左对齐")] Left, [Description("右对齐")] Right, [Description("上对齐")] Up, [Description("下对齐")] Down, /// /// Y轴中心对齐,水平位置居中 /// [Description("水平居中")] HorizontallyCenter, /// /// X轴中心对齐,垂直居中对齐 /// [Description("垂直居中")] VerticallyCenter, [Description("底对齐")] Bottom, [Description("中对齐")] Middle, [Description("顶对齐")] Top, }