private void Botao_Historico_Click(object sender, EventArgs e)
 {
     if (Auxiliar.ctrTelaHistorico == false)
     {
         Auxiliar.ctrTelaHistorico = true;
         Tela_Graficos tela_Graficos = new Tela_Graficos();
         tela_Graficos.Show();
     }
     else
     {
         MessageBox.Show("Tela encontra-se aberta!");
     }
 }
Beispiel #2
0
        private void Botao_historico_Click(object sender, EventArgs e)
        {
            Tela_Graficos telaGrafico = new Tela_Graficos();

            telaGrafico.Show();
        }