예제 #1
0
        private void nuevoBtn_Click(object sender, EventArgs e)
        {
            frmMantEquiEditor editor = new frmMantEquiEditor(this._gestorEquipo, this._gestorMiembro);

            editor.ShowDialog();
            this.cargarGrilla(this._gestorEquipo.ListaEquipos);
        }
예제 #2
0
        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);
        }