我正在开发一个WindowsForm项目,在我的表单中,我有DataGridView
DataGridViewImageColumn
,必须显示该行的状态(启用/禁用)使用图像。
我有一个DataTable
我绑定到我的数据网格。在此表中,有一列是每行的状态,并且是一个文本字段。
如何将此列绑定到显示正确图像的DataGridViewImageColumn
?
答案 0 :(得分:14)
每当我对如何在DataGridView中执行操作有疑问时,请先咨询Microsoft的常见问题解答。
http://www.windowsclient.net/Samples/Go%20To%20Market/DataGridView/DataGridView%20FAQ.doc
通常我在这种情况下做的是处理CellFormatting事件以根据单元格中的值设置图像。
所以我将我的图像存储在像图像列表之类的东西中,然后在CellFormatting中使用如下代码:
private void dgv_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
if (dgv.Columns[e.ColumnIndex].Name == "status")
{
if (e.Value != null)
{
if (e.Value.ToString() == "1")
{
e.Value = imageList1.Images[1];
}
else
{
e.Value = imageList1.Images[2];
}
}
}
}