clear cache in window phone 7

后端 未结 2 544
渐次进展
渐次进展 2021-01-07 00:34

I want Dipose cache in window phone 7. In my project I have download Images, after use I Dispose Image by:

Image.sou         


        
2条回答
  •  Happy的楠姐
    2021-01-07 00:51

    To remove a downloaded image from the cache you need to assign it's source to a separate BitmapImage and set that to null before setting the image's source to null.

    BitmapImage bitmapImage = image.Source as BitmapImage;
    bitmapImage.UriSource = null;
    image.Source = null;
    

    Don't ask me why, but it works.

提交回复
热议问题