Example #1
0
 private void btNovo_Click(object sender, EventArgs e)
 {
     if (novaCategoria == null)
     {
         novaCategoria           = new formCategoriaNova();
         novaCategoria.MdiParent = ActiveForm;
         novaCategoria.Show();
         novaCategoria.FormClosed += new FormClosedEventHandler(novaCategoriaNull);
     }
 }
Example #2
0
 private void novaCategoriaNull(object sender, EventArgs e)
 {
     novaCategoria = null;
 }