コード例 #1
0
 private void buttonAgregar_Click(object sender, EventArgs e)
 {
     frmAgregarEditarTipoRepuesto faetr = new frmAgregarEditarTipoRepuesto();
     faetr.actualizarDataGridEvento += new frmAgregarEditarTipoRepuesto.actualizarDataGrid(llenarDataGrid);
     faetr.MdiParent = this.MdiParent;
     faetr.Show();
 }
コード例 #2
0
 private void buttonEditar_Click(object sender, EventArgs e)
 {
     int r = this.dataGridTipoRepuesto.CurrentCell.RowIndex;
     frmAgregarEditarTipoRepuesto faetr = new frmAgregarEditarTipoRepuesto(Convert.ToInt32(dataGridTipoRepuesto.Rows[r].Cells["idtipo"].Value));
     faetr.actualizarDataGridEvento += new frmAgregarEditarTipoRepuesto.actualizarDataGrid(llenarDataGrid);
     faetr.MdiParent = this.MdiParent;
     faetr.Show();
 }