windows runtime - Clear image cache created by <Image> -
if have element in windows store or windows phone application:
<image source="{binding urltowebserver}" />
the image cached locally. great. how remove cached images on disc code?
you have set imagesource null
something this:
bitmapimage bitmapimage = myimage.source bitmapimage; bitmapimage.urisource = null; myimage.source = null;
this works me. here can find mor infos handling images (section image caching example).
Comments
Post a Comment