private void Dtg_Detalles_CellValueChanged(object sender, DataGridViewCellEventArgs e)
        {
            if (e.RowIndex == -1)
            {
                return;
            }
            DataGridViewRow FilaSeleccionada = Dtg_Detalles.Rows[e.RowIndex];
            string          Valor            = FilaSeleccionada.Cells[e.ColumnIndex].Value.ToString();

            if (string.IsNullOrEmpty(Valor))
            {
                FilaSeleccionada.Cells[e.ColumnIndex].Value = "1";
            }

            NDetalle = (ENT.Detalles_ENT)FilaSeleccionada.DataBoundItem;
            NDetalle.CalcularTotal();
            Dtg_Detalles.Update();
            Dtg_Detalles.Refresh();
            Factura.GuardarItem(Equipo, NDetalle);
        }
 private void CalcularTotal()
 {
     NDetalle.CalcularTotal();
     Lbl_ValTotal.Text = Util.AplicarFormatoDinero(NDetalle.ValorTotal.ToString());
 }