예제 #1
0
 private void stopStartButton_Click(object sender, EventArgs e)
 {
     if (_tournamentTimer.Running)
     {
         _tournamentTimer.Pause();
         stopStartButton.Image = Resources.StartWithoutDebug_16x;
     }
     else
     {
         _tournamentTimer.Start();
         stopStartButton.Image = Resources.Pause_16x;
     }
 }