void CargarPrecioSeleccionado(PrecioIngredientePresentacion precioSeleccionado) { lblIngrediente.Text = precioSeleccionado.Ingrediente; txtPrecio.Text = precioSeleccionado.Precio; txtCantidad.Text = precioSeleccionado.Cantidad; cboUnidad.SelectedItem = precioSeleccionado.Unidad; }
void GrvRecetas_CellEnter(object sender, DataGridViewCellEventArgs e) { DataGridViewRow filaSeleccionada = grvPrecios.Rows[e.RowIndex]; filaSeleccionada.Selected = true; PrecioIngredientePresentacion precioSeleccionado = (PrecioIngredientePresentacion)filaSeleccionada.DataBoundItem; CargarPrecioSeleccionado(precioSeleccionado); }
void GrvRecetas_SelectionChanged(object sender, EventArgs e) { int filasSeleccionadas = grvPrecios.SelectedRows.Count; if (filasSeleccionadas == 0 || filasSeleccionadas > 1) { return; } DataGridViewRow filaSeleccionada = grvPrecios.CurrentRow; PrecioIngredientePresentacion precioSeleccionado = (PrecioIngredientePresentacion)filaSeleccionada.DataBoundItem; CargarPrecioSeleccionado(precioSeleccionado); }