private void step_button_Click(object sender, EventArgs e)
 {
     new Thread(() => {
         pm.executeCommand();
     }).Start();
 }
Ejemplo n.º 2
0
 private void execCommandButton_Click(object sender, EventArgs e)
 {
     PuppetMaster.executeCommand(commandText.Text);
     commandText.ResetText();
 }