Ejemplo n.º 1
0
 protected void WeightRead(string weight, BalanceReadStatus status)
 {
     if (OnReading != null)
     {
         OnReading(weight, status);
     }
 }
Ejemplo n.º 2
0
 private void Device_OnReading(string weight, BalanceReadStatus status)
 {
     Invoke(new Action(() => {
         textBox1.Text = weight;
     }));
 }