我的Windows窗体上有一个绑定到DataTable的DataGridView。我想向它插入一个未绑定的DataGridViewImage列,并根据另一列的值设置图像。图像在DataGidView_CellFormating事件中设置。代码如下
DataGridView dgvResult = new DataGridView();
dgvResult.DataSource = dtResult;
DataGridViewImageColumn imageColumn = new DataGridViewImageColumn();
imageColumn.Width = 40;
imageColumn.Name = "Image";
imageColumn.HeaderText = "";
dgvResult.Columns.Insert(0, imageColumn);
private void dgvResult_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
if (dgvResult.Columns[e.ColumnIndex].Name == "Image")
{
DataGridViewRow row = dgvResult.Rows[e.RowIndex];
if (Utils.isNumeric(row.Cells["CM_IsExport"].Value.ToString()) && Int32.Parse(row.Cells["CM_IsExport"].Value.ToString()) == 1)
{
row.Cells["Image"].Value = Properties.Resources.export16;
}
else { row.Cells["Image"].Value = Properties.Resources.plain16; }
}
}
一切都很好。我的问题是细胞中显示的图像是闪烁的。有谁知道为什么?
答案 0 :(得分:1)
由于您在CellFormatting
事件处理程序中设置图像,因此发生了闪烁。
根据MSDN,每次绘制每个单元格时都会发生CellFormatting
事件,因此在处理此事件时应避免冗长的处理。
您可以根据需要处理DataBindingComplete
或CellValueChanged
事件来设置图片。
您还可以通过创建自定义DoubleBuffering
或通过您正在使用的实例的反射为DataGridView
启用DataGridView
。
class CustomDataGridView : DataGridView
{
public CustomDataGridView()
{
DoubleBuffered = true;
}
}