Esempio n. 1
0
File: Field.cs Progetto: jjg0519/OA
 public Field(string fieldName, string captionName, Constant.CtrlType controlType, bool isNeed)
 {
     _fieldName   = fieldName;
     _captionName = captionName;
     _controlType = controlType;
     _isNeed      = isNeed;
 }
Esempio n. 2
0
File: Field.cs Progetto: 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;
 }