有两个站点;用户(android)和服务器(c#)
程序需要接收用户点击的图片。这些图像(image1)将更改为 android 中的新图像(image2),同样转到服务器。
我所做的是:
1- split the data
2- check if the images gets a new ID number (new ID number refer to changes been made)
3- change the old image with the new image
代码 :
if (berjaya[23].Equals(70))
{
//code where the old image is changed
pictureBox1.Image = new BitmapImage(new Uri(@"\\HospitalIcon\\images\\a3_01.gif"));
}
不幸的是,我实际上不知道如何使用后面的代码更改新图像。我正在使用 c#。新BitmapImage
说找不到。有什么我遗漏的吗?