using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; namespace IStation.WinFormUI { /// /// 滑动特效类型枚举 /// public enum ePushEffectOptions { [Display(Name="从左往右")] FromLeft = 0, [Display(Name = "从上往下")] FromTop = 1, [Display(Name = "从右往左")] FromRight = 2, [Display(Name = "从下往上")] FromBottom = 3, } }