private void Log_in_Timer_Tick(object sender, EventArgs e)
 {
     if (this.Opacity <= 1.0)
     {
         this.Opacity += 0.025;
     }
     else
     {
         Log_in_Timer.Stop();
     }
 }
示例#2
0
 private void timer1_Tick(object sender, EventArgs e)
 {
     if (this.Opacity <= 1.0)
     {
         this.Opacity += 0.25;
     }
     else
     {
         Log_in_Timer.Start();
     }
 }
 private void AppBody_Load(object sender, EventArgs e)
 {
     this.Opacity = 0.1;
     Log_in_Timer.Start();
 }