Ejemplo n.º 1
0
 public override void RunThread()
 {
     while (true)
     {
         if (gc.isChange())
         {
             l = f.getGear();
             Action action_update_l = () => l.Text = gc.getGear().ToString();
             f.Invoke(action_update_l);
             gc.setChange(false);
         }
     }
 }