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