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