private void TimerInicio_Tick(object sender, EventArgs e) { segundos++; if (segundos == 3) { foreach (Control control in Table.Controls) { Label iconLabel = control as Label; iconLabel.ForeColor = iconLabel.BackColor; } TimerInicio.Stop(); } }
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; } }
private void Timer1_Tick(object sender, EventArgs e) { try { if (this.Opacity < 1) { this.Opacity += 0.05; //Opacity trabaja en procentaje 1 es 100% } circularProgressBar1.Value += 1; if (circularProgressBar1.Value == 500) { circularProgressBar1.Value = 0; TimerInicio.Stop(); TimerInicio.Start(); } } catch (Exception ex) { throw ex; } }