Ejemplo n.º 1
0
 private void Timer2_Tick(object sender, EventArgs e)
 {
     try
     {
         this.Opacity -= 0.1;
         if (this.Opacity == 0)
         {
             TimerCierre.Stop();
             if (response != "")
             {
                 TimerMensajes.Stop();
                 TimerInicio.Stop();
                 this.Close();
             }
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }