private void Continue() { Start_Stop.Text = "Пауза"; Cycle_Timer.Interval = 200; Cycle_Timer.Start(); }
private void Form1_Load(object sender, EventArgs e) { Cycle_Timer.Stop(); CreateField(); }
private void Pause() { Start_Stop.Text = "Старт"; Cycle_Timer.Stop(); }