private void nuevoBtn_Click(object sender, EventArgs e) { frmMantEquiEditor editor = new frmMantEquiEditor(this._gestorEquipo, this._gestorMiembro); editor.ShowDialog(); this.cargarGrilla(this._gestorEquipo.ListaEquipos); }
private void editBtn_Click(object sender, EventArgs e) { string nombre = (string)this.dataGridView1.SelectedRows[0].Cells[0].Value; frmMantEquiEditor editor = new frmMantEquiEditor(this._gestorEquipo, this._gestorMiembro, nombre); editor.ShowDialog(); this.cargarGrilla(this._gestorEquipo.ListaEquipos); }