Beispiel #1
0
 private void Time2_Tick(object sender, EventArgs e)
 {//有点小问题哦
     if (this.Left > aleft + ScriptTime)
     {
         this.Left -= ScriptTime;
     }
     else if (this.Left > aleft)
     {
         this.Left -= 5;
     }
     else
     {
         Time2.Stop();
     }
 }