private void buttonVoltar_Click(object sender, EventArgs e)
        {
            Gestao_Oficina gestao_Oficina = (Gestao_Oficina)Tag;

            gestao_Oficina.Show();
            Close();
        }
Exemple #2
0
        private void pictureBoxGestaoOficina_Click(object sender, EventArgs e)
        {
            Gestao_Oficina gestao_Oficina = new Gestao_Oficina();

            gestao_Oficina.Tag = this;
            gestao_Oficina.Show(this);
            Hide();
        }