Ejemplo n.º 1
0
 public UIMeasurement(double value, UIMeasurementUnit unit = UIMeasurementUnit.Pixel)
 {
     this.value = (float)value;
     this.unit  = unit;
 }
Ejemplo n.º 2
0
 public UIMeasurement(int value, UIMeasurementUnit unit = UIMeasurementUnit.Pixel)
 {
     this.value = value;
     this.unit  = unit;
 }