private void FadeOut_Timer_Tick(object sender, EventArgs e)
 {
     if (this.Opacity >= 0.1)
     {
         this.Opacity -= 0.025;
     }
     else
     {
         FadeOut_Timer.Stop();
         this.Close();
     }
 }
 private void Load_Timer_Tick(object sender, EventArgs e)
 {
     Load_Timer.Stop();
     FadeOut_Timer.Start();
 }