[]
整数类型的属性对应的编辑器,如单选按钮使用的[项目间距]属性。
public class IntEditorSetting : BuiltinEditorSetting, INotifyPropertyChanged
构造函数。
public IntEditorSetting()
构造函数,指定了最小值和最大值的整数类型的编辑器。
public IntEditorSetting(int min, int max)
类型 | 名称 | 描述 |
---|---|---|
int | min | |
int | max |
是否允许清空整数类型的属性编辑器的值。
public bool AllowNull { get; set; }
类型 | 描述 |
---|---|
bool |
整数类型的属性编辑器的最大值。
public int Max { get; set; }
类型 | 描述 |
---|---|
int |
整数类型的属性编辑器的最小值。
public int Min { get; set; }
类型 | 描述 |
---|---|
int |
整数类型的属性编辑器的值为空时显示的水印。
public string Watermark { get; set; }
类型 | 描述 |
---|---|
string |