Exemplo n.º 1
0
 private void Uptimer_Tick(object sender, EventArgs e)
 {
     if (upValue > this.Size.Height)
     {
         Uptimer.Stop();
         isFormUp = true;
     }
     else
     {
         this.Location = new Point(SystemInformation.WorkingArea.Width - this.Size.Width,
                                   SystemInformation.WorkingArea.Height - upValue);
         upValue += 4;
     }
 }