Esempio n. 1
0
 private void Aparecer_Tick(object sender, EventArgs e)
 {
     if (this.Opacity < 1)
     {
         this.Opacity += 0.05;
     }
     BarraCargante.Value += 1;
     if (BarraCargante.Value == 100)
     {
         Aparecer.Stop();
         Animacion.Start();
         Func_Inicio();
     }
 }
Esempio n. 2
0
 private void FrmBienvenido_Load(object sender, EventArgs e)
 {
     this.Opacity = 0.0;
     Aparecer.Start();
 }