我想知道如何获得图像来源 在带有C#的Windows应用商店应用中。 以下是设置源的方法 但我不知道该怎么做。
var uri = new Uri("ms-appx:///img/image.png");
var bitmap = new BitmapImage(uri);
img.Name = "icon" + nbfood.Text;
img.Source = bitmap;
答案 0 :(得分:1)
你可以像设置它一样获得图像来源:
ImageSource source = img.Source;
BitmapImage bitmapImage = source as BitmapImage;