|
12345678910111213141516171819202122 |
- using System.ComponentModel;
-
- namespace BPA.UIControl
- {
- /// <summary>
- /// 数值类型
- /// </summary>
- public enum NumericType
- {
- /// <summary>
- /// int type
- /// </summary>
- [Description("int type")]
- Int = 0,
-
- /// <summary>
- /// double type
- /// </summary>
- [Description("double type")]
- Double,
- }
- }
|