duheng
2024-03-28 6c93aedfeeb66023f9506083517aee1a4e18e24d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System.ComponentModel.DataAnnotations;
 
namespace IStation.WinFrmUI
{
    /// <summary>
    /// 滑动特效类型枚举
    /// </summary>
    public enum ePushEffectOptions
    {
        [Display(Name = "从左往右")]
        FromLeft = 0,
 
        [Display(Name = "从上往下")]
        FromTop = 1,
 
        [Display(Name = "从右往左")]
        FromRight = 2,
 
        [Display(Name = "从下往上")]
        FromBottom = 3,
    }
}