0
我應該得到我的圖像的Uri,但是當我嘗試這樣做時,會出現此錯誤。在Windows Phone中獲取圖像的Uri
圖像的UriSource能夠鑄造的BitmapImage但BitmapImage的屬性都扔錯誤。我如何獲取圖片的來源?
img0.Source = GetImageForIndex(0, names, file, path).ImgSource;
ImageListTemplate GetImageForIndex(int index, List<string> names, IsolatedStorageFile file, string path)
{
using (IsolatedStorageFileStream stream = file.OpenFile(path + names[index], FileMode.Open, FileAccess.Read))
{
BitmapImage tempImage = new BitmapImage();
tempImage.SetSource(stream);
imagePath = path + names[index];
return new ImageListTemplate() { ImgSource = tempImage };
}
}
ImgSource的類型已經是BitmapImage了。
我已經做了它,我問它作爲你的答案。謝謝。 –