Exemple #1
0
 private void playMacroToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (CurrentMacro.Count < 1)
     {
         return;
     }
     using (formMacroPlaying mp = new formMacroPlaying(CurrentMacro.ToArray()))
     {
         this.Hide();
         mp.ShowDialog();
         this.Show();
     }
 }
 private void playMacroToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (CurrentMacro.Count < 1)
         return;
     using(formMacroPlaying mp = new formMacroPlaying(CurrentMacro.ToArray()))
     {
         this.Hide();
         mp.ShowDialog();
         this.Show();
     }
 }