private void DgvProducto_CellClick(object sender, DataGridViewCellEventArgs e) { if (FrmRecepcion != null) { Producto producto = (Producto)DgvProducto.CurrentRow.DataBoundItem; FrmRecepcion.RecibirProducto(producto); this.Hide(); } }