private void dgvDatos_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { if (e == null) return; if (e.RowIndex == -1) return; if (this.dgvDatos.CurrentRow == null) return; DetalleConfiguracion c = new DetalleConfiguracion(Util.Entero(this.dgvDatos.CurrentRow.Cells["ConfiguracionID"].Value)); c.ShowDialog(Principal.Instance); }
private void dgvDatos_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { if (e == null) { return; } if (e.RowIndex == -1) { return; } if (this.dgvDatos.CurrentRow == null) { return; } DetalleConfiguracion c = new DetalleConfiguracion(Util.Entero(this.dgvDatos.CurrentRow.Cells["ConfiguracionID"].Value)); c.ShowDialog(Principal.Instance); }