Example #1
0
 public void Start()
 {
     if (CommandsInput.TextLength > 1)
     {
         Running = true;
         SetStartButtonText("Stop");
         this.Worker = new Thread(new ThreadStart(this.ExecuteCommands));
         this.Worker.IsBackground = true;
         this.Worker.Start();
         CommandsInput.Hide();
         CommandsDisplay.Show();
     }
 }