我一直在处理这个问题太久了。我想比较一下,如果PictureBox与参考资料中的图像具有相同的图像,那么我自然就是这样了;
if(picturebox1.Image==Properties.Resources.image1)
{
Console.WriteLine("Hello!"):
}
但它没有用。所以,我尝试了不同的方式;
if(picturebox1.Image.Equals(Properties.Resources.image1))
这也没有用。我尝试使用Bitmap;
Bitmap temp = new Bitmap(Properties.Resources.image1);
if(temp==Properties.Resources.image1)
它也没有用。我搜索了互联网(包括StackOverflow),所有答案都像50行一样。是否真的没有简单的方法来比较PictureBox图像和资源图像?!