私は本当に奇妙な問題を抱えています。DataGridViewにエンティティのリストをデータソースとして割り当てます。実行時にいくつかの列を作成してから、DataGridViewの各行について、その行のいくつかの列のいくつかの値に基づいて、その新しい列の値を完成させます。
同じDataGridViewを他の形式で表示しているため、コードは正常に機能します。しかし、この新しいUserControlでは、その新しい列に値が表示されていないようです。
奇妙なことに、値が実際に存在するのは、foreach行ループを実行すると、テキストボックスに値を表示するいくつかのアキュムレータintオブジェクトがあり、値が正しいためです。
トライアンドキャッチを使用して、何かが間違っているかどうかを確認しましたが、すべて問題ありません。
私は自分が得ているものの画像を添付しました。
これらの2つの強調表示されたテキストボックスは、これら2つの列の値を累積するものです。
私が言ったように、同じコードは他の形式でもうまく機能しています。念のため、このUserControlはフォームのパネルに追加されます。
これは、DataGridViewに使用するコードです。
public void Actualizar_grilla_prestamos()
{
dgv_Prestamos.DataSource = null;
dgv_Prestamos.Columns.Clear();
dgv_Prestamos.DataSource = lista_prestamos;
dgv_Prestamos.RowHeadersVisible = false;
//Agregar columna cuotas restantes
DataGridViewColumn cuotas_restantes = new DataGridViewColumn();
{
cuotas_restantes.HeaderText = "C. Rest.";
cuotas_restantes.Name = "cuotas_restantes";
cuotas_restantes.AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells;
cuotas_restantes.CellTemplate = new DataGridViewTextBoxCell();
cuotas_restantes.ToolTipText = "Cantidad de cuotas restantes por cobrar";
}
dgv_Prestamos.Columns.Add(cuotas_restantes);
//Agregar columna tipo de tasa
DataGridViewColumn tipo_tasa = new DataGridViewColumn();
{
tipo_tasa.HeaderText = "Tipo tasa";
tipo_tasa.Name = "tipo_tasa";
tipo_tasa.AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells;
tipo_tasa.CellTemplate = new DataGridViewTextBoxCell();
}
dgv_Prestamos.Columns.Add(tipo_tasa);
//Agregar columna garantes
DataGridViewColumn garantes = new DataGridViewColumn();
{
garantes.HeaderText = "Garantes";
garantes.Name = "garantes";
garantes.AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells;
garantes.CellTemplate = new DataGridViewTextBoxCell();
}
dgv_Prestamos.Columns.Add(garantes);
dgv_Prestamos.Columns["garantes"].DisplayIndex = dgv_Prestamos.Columns["Cliente1"].Index;
//Agregar columna cuotas mora
DataGridViewColumn cuotas_mora = new DataGridViewColumn();
{
cuotas_mora.HeaderText = "C. Venc.";
cuotas_mora.Name = "cuotas_mora";
cuotas_mora.AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells;
cuotas_mora.CellTemplate = new DataGridViewTextBoxCell();
cuotas_mora.ToolTipText = "Cantidad de cuotas vencidas";
}
dgv_Prestamos.Columns.Add(cuotas_mora);
int cant_total_cuotas_mora = 0;
int total_cuotas_restantes = 0;
foreach (DataGridViewRow r in dgv_Prestamos.Rows)
{
Estado_prestamo estado = (Estado_prestamo)dgv_Prestamos.Rows[r.Index].Cells["Estado_prestamo"].Value;
if (estado.id_estado_prestamo != 3)
{
var lista_cuotas = (System.Data.Objects.DataClasses.EntityCollection<Sistema_financiero.Cuota>)dgv_Prestamos.Rows[r.Index].Cells["Cuota"].Value;
dgv_Prestamos.Rows[r.Index].Cells["cuotas_mora"].Value = lista_cuotas.Where(x => x.pagada != true && x.fecha_vencimiento < DateTime.Now.Date).Count();
if (Convert.ToInt32(dgv_Prestamos.Rows[r.Index].Cells["cuotas_mora"].Value) > 0)
{
dgv_Prestamos.Rows[r.Index].Cells["cuotas_mora"].Style.ForeColor = Color.Red;
}
dgv_Prestamos.Rows[r.Index].Cells["cuotas_restantes"].Value = lista_cuotas.Where(x => x.pagada != true).Count();
}
else
{
dgv_Prestamos.Rows[r.Index].Cells["cuotas_mora"].Value = 0;
dgv_Prestamos.Rows[r.Index].Cells["cuotas_restantes"].Value = 0;
dgv_Prestamos.Rows[r.Index].Cells["cuotas_restantes"].Style.ForeColor = Color.Green;
}
if (Convert.ToBoolean(dgv_Prestamos.Rows[r.Index].Cells["tasa_fija"].Value) == true)
{
dgv_Prestamos.Rows[r.Index].Cells["tipo_tasa"].Value = "FIJA";
}
else
{
dgv_Prestamos.Rows[r.Index].Cells["tipo_tasa"].Value = "VARIABLE";
}
dgv_Prestamos.Rows[r.Index].Cells["garantes"].Value = ((System.Data.Objects.DataClasses.EntityCollection<Sistema_financiero.Cliente>)dgv_Prestamos.Rows[r.Index].Cells["Cliente1"].Value).Count;
cant_total_cuotas_mora = cant_total_cuotas_mora + Convert.ToInt32(dgv_Prestamos.Rows[r.Index].Cells["cuotas_mora"].Value);
total_cuotas_restantes = total_cuotas_restantes + Convert.ToInt32(dgv_Prestamos.Rows[r.Index].Cells["cuotas_restantes"].Value);
}
tbx_Cuotas_adeudadas_vencidas.Text = cant_total_cuotas_mora.ToString();
tbx_Total_cuotas_restantes.Text = total_cuotas_restantes.ToString();
//Agregar columna ver prestamo
DataGridViewImageColumn ver_prestamo = new DataGridViewImageColumn();
{
ver_prestamo.HeaderText = "";
ver_prestamo.Name = "ver_prestamo";
ver_prestamo.AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells;
ver_prestamo.CellTemplate = new DataGridViewImageCell();
ver_prestamo.Image = Properties.Resources.eye_small_grid;
ver_prestamo.ToolTipText = "Ver préstamo";
}
dgv_Prestamos.Columns.Add(ver_prestamo);
dgv_Prestamos.Columns["ver_prestamo"].DisplayIndex = 0;
dgv_Prestamos.Columns["id_prestamo"].AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells;
dgv_Prestamos.Columns["num_cuotas"].AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells;
dgv_Prestamos.Columns["cuotas_mora"].AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells;
dgv_Prestamos.Columns["cuotas_restantes"].AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells;
dgv_Prestamos.Columns["importe"].AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells;
dgv_Prestamos.Columns["Moneda"].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
dgv_Prestamos.Columns["Sistema_amortizacion"].AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells;
dgv_Prestamos.Columns["cuotas_mora"].DisplayIndex = dgv_Prestamos.Columns["num_cuotas"].Index + 1;
dgv_Prestamos.Columns["cuotas_restantes"].DisplayIndex = dgv_Prestamos.Columns["num_cuotas"].Index + 1;
dgv_Prestamos.Columns["importe"].DisplayIndex = dgv_Prestamos.Columns["garantes"].DisplayIndex;
dgv_Prestamos.Columns["num_cuotas"].DisplayIndex = dgv_Prestamos.Columns["cuotas_restantes"].DisplayIndex;
dgv_Prestamos.Columns["Estado_prestamo"].DisplayIndex = dgv_Prestamos.Columns[dgv_Prestamos.Columns.Count - 1].Index;
dgv_Prestamos.Columns["Moneda"].DisplayIndex = dgv_Prestamos.Columns[dgv_Prestamos.Columns.Count - 2].Index;
dgv_Prestamos.Columns["tipo_tasa"].DisplayIndex = dgv_Prestamos.Columns["tasa_fija"].Index;
List<int> lista_columnas_visibles = new List<int> { dgv_Prestamos.Columns["Estado_prestamo"].Index, dgv_Prestamos.Columns["garantes"].Index, dgv_Prestamos.Columns["importe"].Index, dgv_Prestamos.Columns["Sistema_amortizacion"].Index, dgv_Prestamos.Columns["tipo_tasa"].Index, dgv_Prestamos.Columns["Moneda"].Index, dgv_Prestamos.Columns["id_prestamo"].Index, dgv_Prestamos.Columns["num_cuotas"].Index, dgv_Prestamos.Columns["cuotas_mora"].Index, dgv_Prestamos.Columns["cuotas_restantes"].Index, dgv_Prestamos.Columns["ver_prestamo"].Index };
Mostrar_ocultar_columnas(dgv_Prestamos, lista_columnas_visibles);
dgv_Prestamos.Columns["num_cuotas"].HeaderText = "Cuotas";
dgv_Prestamos.Columns["id_prestamo"].HeaderText = "Nº";
dgv_Prestamos.Columns["tasa_fija"].HeaderText = "Tipo tasa";
dgv_Prestamos.Columns["importe"].HeaderText = "Importe";
dgv_Prestamos.Columns["Estado_prestamo"].HeaderText = "Estado";
dgv_Prestamos.Columns["Sistema_amortizacion"].HeaderText = "Amortización";
dgv_Prestamos.Columns["importe"].DefaultCellStyle.Format = String.Format("$ ##0.##");
if (dgv_Prestamos.Columns["Moneda"].Width > 99)
{
dgv_Prestamos.Columns["Moneda"].AutoSizeMode = DataGridViewAutoSizeColumnMode.None;
dgv_Prestamos.Columns["Moneda"].Width = 99;
}
}
DataGridViewに目が付いた列があることがわかります。目をクリックすると、そのエンティティが別のフォームで表示されます。その形式でエンティティの状態を変更すると、変更が行われた場合はtrue、変更が行われていない場合はfalseの値(borrado)が返されます。変更が検出された場合は、上記のメソッドを再度呼び出します。魔法のように、不足している値がすべて表示されます。
private void dgv_Prestamos_CellContentDoubleClick(object sender, DataGridViewCellEventArgs e)
{
if (e.RowIndex != -1)
{
if (e.ColumnIndex == dgv_Prestamos.Columns["ver_prestamo"].Index)
{
frm_Ver_Prestamo ver_prestamo = new frm_Ver_Prestamo();
ver_prestamo.prestamo_seleccionado = (Prestamo)dgv_Prestamos.Rows[e.RowIndex].DataBoundItem;
ver_prestamo.db = db;
ver_prestamo.ShowDialog();
if (ver_prestamo.borrado == true)
{
dgv_Prestamos.DataSource = null;
Cursor.Current = Cursors.WaitCursor;
Actualizar_grilla_prestamos();
Cursor.Current = Cursors.Default;
}
}
}
}
ver_prestamoは、エンティティを表示するフォームです。何がそれを機能させるのかわかりません。唯一の違いは、以前にDataSource=nullを実行したことです。しかし、私はとにかくメソッドでそれを行います。