Пример #1
0
 private void Hide_Btn()
 {
     Abastecimento_Btn.Hide();
     Atendimento_Btn.Hide();
     Combustivel_Btn.Hide();
     Departamento_Btn.Hide();
     Destino_Btn.Hide();
     Manutenção_Btn.Hide();
     Multa_Btn.Hide();
     Notificação_Btn.Hide();
     Oficina_Btn.Hide();
     Oleo_Btn.Hide();
     Posto_Btn.Hide();
     Salario_Btn.Hide();
     Usuario_Btn.Hide();
     Veiculo_Btn.Hide();
 }
Пример #2
0
 public void Show_Btn()
 {
     Abastecimento_Btn.Show();
     Atendimento_Btn.Show();
     Combustivel_Btn.Show();
     Departamento_Btn.Show();
     Destino_Btn.Show();
     Manutenção_Btn.Show();
     Multa_Btn.Show();
     Notificação_Btn.Show();
     Oficina_Btn.Show();
     Oleo_Btn.Show();
     Posto_Btn.Show();
     Salario_Btn.Show();
     Usuario_Btn.Show();
     Veiculo_Btn.Show();
 }
Пример #3
0
        private void Atendimento_Btn_Click(object sender, EventArgs e)
        {
            Sac_Label.Hide();
            Atendimento_Btn.Hide();

            Tela_Chat Chat          = new Tela_Chat();
            Panel     PainelCentral = new Panel();

            PainelCentral.Dock = DockStyle.Fill;
            Chat.TopLevel      = false;
            Chat.AutoScroll    = true;
            Chat.Show();

            PainelCentral.Controls.Add(Chat);
            PainelCentral.Show();

            this.Controls.Add(PainelCentral);
        }