Ejemplo n.º 1
0
 private void buttonStop_Click(object sender, EventArgs e)
 {
     ctl.Stop();
     this.buttonConfig.Enabled = true;
     this.buttonStart.Enabled  = true;
     this.buttonStop.Enabled   = false;
 }
Ejemplo n.º 2
0
 public bool Stop()
 {
     if (_ctrl == null)
     {
         return(false);
     }
     _ctrl.Stop();
     return(true);
 }