示例#1
0
文件: Field.cs 项目: jjg0519/OA
 public Field(string fieldName, string captionName, Constant.CtrlType controlType, bool isNeed)
 {
     _fieldName   = fieldName;
     _captionName = captionName;
     _controlType = controlType;
     _isNeed      = isNeed;
 }
示例#2
0
文件: Field.cs 项目: jjg0519/OA
 public Field(string fieldName, string captionName, Constant.CtrlType controlType, bool isNeed, double min, double max)
 {
     _fieldName   = fieldName;
     _captionName = captionName;
     _controlType = controlType;
     _isNeed      = isNeed;
     _minValue    = min;
     _maxValue    = max;
 }