Example #1
0
 private void btCategoria_Click(object sender, EventArgs e)
 {
     if (categoria == null)
     {
         categoria           = new formCategoria();
         categoria.MdiParent = this;
         categoria.Show();
         categoria.FormClosed += new FormClosedEventHandler(fecharCategoria);
     }
 }
Example #2
0
 private void fecharCategoria(object sender, EventArgs e)
 {
     categoria = null;
 }