Exemplo n.º 1
0
 private void btnNuevo_Click(object sender, EventArgs e)
 {
     frmCategoria fCategoria = new frmCategoria();
     fCategoria.ShowDialog();
     CargarCategorias();
 }
Exemplo n.º 2
0
 private void Modificar(Int32 indice)
 {
     frmCategoria fCategoria = new frmCategoria();
     if (indice >= 0)
     {
         fCategoria.categoria = temList[indice];
         fCategoria.ShowDialog();
         CargarCategorias();
     }
 }