如何在WS应用程序中获取图像源

时间:2014-05-28 01:35:34

标签: c# windows-store-apps

我想知道如何获得图像来源 在带有C#的Windows应用商店应用中。  以下是设置源的方法 但我不知道该怎么做。

var uri = new Uri("ms-appx:///img/image.png");
var bitmap = new BitmapImage(uri);
img.Name = "icon" + nbfood.Text;

img.Source = bitmap;

1 个答案:

答案 0 :(得分:1)

你可以像设置它一样获得图像来源:

ImageSource source = img.Source;
BitmapImage bitmapImage = source as BitmapImage;