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