Beispiel #1
0
 public void GoUp()
 {
     if (!isNext)
     {
         TimerU.Start();
     }
 }
Beispiel #2
0
 private void TimerU_Tick(object sender, EventArgs e)
 {
     if (this.Left < aleft)
     {
         this.Left += Speed;
     }
     else
     {
         TimerU.Stop();
         isNext = true;
     }
 }