Why do my images sometimes reload (and WriteableBitmaps disappear) on resume?
When I resume my app, sometimes it loses its images. I can reproduce this even in trivial apps. This manifests in two different ways, depending on where the image came from: If I did something like <Image Source="/Assets/Logo.png"/> (i.e., loading an image from my app package by URI), the image will disappear briefly, and then reload. This is easier to see when the screen contains many images; they reload in sequence, so I can watch the image loading ripple across the screen. If I created a WriteableBitmap and bound it to Image.Source, then the bitmap disappears entirely, never to return. I