I got a little confused in this class, I was hoping that someone could shed some light. I know that when loading it depends on the BitmapCreateOptions of the image.
However, when creating an absolute BitmapImage, say:
var Image = new BitmapImage(new Uri("http://...", UriKind.Absolute))
It will not download it immediately, because DelayCreation defaults to BitmapCreateOptions , right?
What to do, if:
var Image = new BitmapImage(new Uri("http://...", UriKind.Absolute))
Image.CreateOptions = BitmapCreateOptions.None;
Will the image load right after installing BitmapCreateOptions? If so, then this has the same behavior, right?
var Image = new BitmapImage(new Uri("http://...", UriKind.Absolute)) { CreateOptions = BitmapCreateOptions.None }
So how does caching work for BitmapImage ?
- When does BitmapImage get cached?
- , . "" , . "" ?
- / ?
- , Windows Phone?
, , ImageOpened ImageFailed ?