Example #1
0
 private void Fade_Timer_Tick(object sender, EventArgs e)
 {
     if (this.Opacity > 0.0)
     {
         this.Opacity -= 0.200;
     }
     else
     {
         Fade_Timer.Stop();
         Application.Exit();
     }
 }