将 datagridview 单元格值与 DataGridViewImageColumn 中的图像进行比较



我已经创建了一个DataGridViewImageColumn,如果图像单元格的值为绿色复选框图像,我想执行操作。代码如下。但它不会进入条件

if (dgvException.Rows[e.RowIndex].Cells["colStock"].Value 
                                              == Properties.Resources.msQuestion)
{
    //Some code
}

请帮忙。

我建议使用cell Tag属性添加一个表示图像的文本值 - 例如数字或名称,并使用它来检查显示的图像。

使用相等运算符 ( == ) 检查图像的相等性不会按照您需要的方式工作。 这就是为什么使用相等性检查总是返回 false 的原因。

您需要找出两个图像的内容是否相同 - 为此,您需要对DGV单元中的图像和参考图像进行逐像素检查。 我找到了一些指向本文的链接,这些链接演示了比较两个图像。 我从文章中获取了图像比较算法,并将其压缩为一种方法,该方法需要两个Bitmaps作为参数进行比较,如果图像相同,则返回 true:

private static bool CompareImages(Bitmap image1, Bitmap image2) {
    if (image1.Width == image2.Width && image1.Height == image2.Height) {
        for (int i = 0; i < image1.Width; i++) {
            for (int j = 0; j < image1.Height; j++) {
                if (image1.GetPixel(i, j) != image2.GetPixel(i, j)) {
                    return false;
                }
            }
        }
        return true;
    } else {
        return false;
    }
}

(警告:代码未测试)

使用此方法,您的代码将变为:

if (CompareImages((Bitmap)dgvException.Rows[e.RowIndex].Cells["colStock"].Value, Properties.Resources.msQuestion)) {
    //Some code 
} 

S.Ponsford 的答案在我的情况下效果很好,我做了这个通用的例子。PD:请记住,我的列 0 是我的 DataGridViewImageColumn

if (this.dataGridView.CurrentRow.Cells[0].Tag == null)
{                                                    
     this.dataGridView.CurrentRow.Cells[0].Value= Resource.MyResource1;
     this.dataGridView.CurrentRow.Cells[0].Tag = true;                       
}
else
{
     this.dataGridView.CurrentRow.Cells[0].Value = Resources.MyResource2;
     this.dataGridView.CurrentRow.Cells[0].Tag = null;                        
}                         

相关内容

  • 没有找到相关文章

最新更新