private void Form1_Load(object sender, EventArgs e) { Config = Configurações.BuscarConfig(); if (!Configurações.IsConfigurado()) { ChamaConfig(); timer = 0; } InicializaBanco(); SetaLabel(timer); Atualiza.Start(); this.Hide(); }
private void Atualiza_Tick(object sender, EventArgs e) { contador = int.Parse(LabelTimer.Text); Atualiza.Stop(); if (contador > 0) { contador--; SetaLabel(contador); } else { if (!Processador.IsBusy) { Processador.RunWorkerAsync(); AtualizaGrig(); } SetaLabel(timer); } Atualiza.Start(); }