예제 #1
0
 static void Off(object sender, EventArgs e)
 {
     t2.Stop();
     b = false;
     t1.Start();
 }
예제 #2
0
 public void Pause()
 {
     timer.Stop();
     Status = PlayerStatus.Paused;
 }
예제 #3
0
 static void On(object sender, EventArgs e)
 {
     t1.Stop();
     b = true;
     t2.Start();
 }