Example #1
0
 private void Login_timer_Tick(object sender, EventArgs e)
 {
     if (this.Opacity < 1.0)
     {
         this.Opacity = this.Opacity + 0.025;
     }
     else
     {
         Login_timer.Stop();
     }
 }
Example #2
0
 private void Appbody_Load(object sender, EventArgs e)
 {
     this.Opacity = 0.1;
     Login_timer.Start();
 }