Beispiel #1
0
 public Keyboard(Point location, int Max, int Min)
 {
     InitializeComponent();
     this.Location = location;
     IntValue      = new Range_Double(Max, Min);
     m_DataType    = DataType.IntType;
 }
Beispiel #2
0
 public Keyboard(Point location, double Max, double Min, int DecimalDigits = 1)
 {
     InitializeComponent();
     this.Location        = location;
     DoubleValue          = new Range_Double(Max, Min);
     this.m_DecimalDigits = DecimalDigits;
     m_DataType           = DataType.DoubleType;
 }