[]
用于配置整数编辑框的设置,必须标注在 Int 类型的属性上
public class IntPropertyAttribute : Attribute
用于配置整数编辑框的设置,必须标注在 Int 类型的属性上
public IntPropertyAttribute()
是否可以设置为空,默认为否
public bool AllowNull { get; set; }
类型 | 描述 |
---|---|
bool |
最大值,默认int.MaxValue
public int Max { get; set; }
类型 | 描述 |
---|---|
int |
最小值,默认int.MinValue
public int Min { get; set; }
类型 | 描述 |
---|---|
int |
值为空时的替代文本
public virtual string Watermark { get; set; }
类型 | 描述 |
---|---|
string |