private void button1_Click(object sender, EventArgs e)
        {
            FmrCadastroCategoria FmrCadastro = new FmrCadastroCategoria();

            FmrCadastro.Closed += new EventHandler(Fmr_Closed);
            FmrCadastro.Show();
        }
예제 #2
0
 private void cadastroDeCategoriaToolStripMenuItem_Click(object sender, EventArgs e)
 {
     // Cadastro de Categoria
     Cadastros.FmrCadastroCategoria FmrCadastroCategoria = new Cadastros.FmrCadastroCategoria();
     FmrCadastroCategoria.Show();
 }