How to get the download with the percentage of downloaded information when downloading the image?
I have it:
Image image = new Image(); image.Source = new BitmapImage(new Uri("http://somesite.com/someimage.jpg"));
I was expecting something like this:
image.Loading += RoutedEventHandler(image_Loading);
but I canβt find such an event. There is Loaded (not related to loading the source), but ImageOpened (which is launched after loading the source, completed and completed the layout).
I know that this is possible because I have seen other applications show the progress of loading images (for example, "img news reader"). Is this possible with the standard Image Control, is there a third-party control that provides this, or do I need to write my own?
source share