Esempio n. 1
0
        private void newBtn_Click(object sender, EventArgs e)
        {
            frmEventoNuevo ventanaEventoNuevo = new frmEventoNuevo(_gestorEventos, _gestorEquipos);

            ventanaEventoNuevo.ShowDialog();
            this.CargarGrilla(this._gestorEventos.ListaEventos);
        }
Esempio n. 2
0
        private void editBtn_Click(object sender, EventArgs e)
        {
            string         nombre             = this.dataGridView1.SelectedRows[0].Cells[0].Value.ToString();
            frmEventoNuevo ventanaEventoNuevo = new frmEventoNuevo(_gestorEventos, _gestorEquipos, nombre);

            ventanaEventoNuevo.ShowDialog();
            this.CargarGrilla(this._gestorEventos.ListaEventos);
        }