1

我正在OutofMemoryException输入这个特定的代码。

public BitmapImage GetImage(int pageNo)
        {
            if (!this._isLoaded)
            {
                this.Load();
            }
            using (IsolatedStorageFileStream stream = IsolatedStorageFile.GetUserStoreForApplication().OpenFile(this.FileNames[pageNo], FileMode.Open, FileAccess.Read))
            {
                BitmapImage image = new BitmapImage();
                image.SetSource(stream);            

                return image;

            }
        }

内存不足异常发生在image.SetSource(stream)。我无法将 uri 设置为,null因为我必须返回图像。

解决方法是什么?在这里帮帮我。

4

1 回答 1

3

我有这个位图图像列表。

 private List<BitmapImage> _images = new List<BitmapImage>();

我在离开页面时清除了uri。

 protected override void OnNavigatedFrom(NavigationEventArgs e)
        {
            base.OnNavigatedFrom(e);
            this.DataContext = null;
            foreach (var obj in this._images)
            {
                if (obj != null)
                {
                    obj.ClearValue(BitmapImage.UriSourceProperty);
                }

            }
于 2013-04-05T12:56:01.940 回答