コード例 #1
0
ファイル: frmMantEquipos.cs プロジェクト: degva/LP2Proyects
        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
ファイル: frmMantEquipos.cs プロジェクト: degva/LP2Proyects
        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);
        }