clear cache in window phone 7

后端 未结 2 529
渐次进展
渐次进展 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条回答
  •  有刺的猬
    2021-01-07 00:59

    What you can do to enforce system to load image always from the URL is to use the following inception:

    img.source = new bitmapImage(new uri("http://diadiem.com/image/123.jpg?random=" + randomvar)...
    

    Where randomvar is a random variable like GUID.NewGuid()

提交回复
热议问题