When does the HttpImageSource Changed event triger?

Hello! I am looking for a way to know when an Image is completely loaded. HttpImageSource.Changed seemed like a solution. Unfortunately it isn’t triggered at all. Is the Changed event the right way to do this or is it meant for something else? Here is a sample code that I am using:

<JavaScript>
function imageChanged() {
	console.log(123);
}

module.exports = {
	imageChanged: imageChanged
}
</JavaScript>

<Image Clicked="{imageChanged}">
    <HttpImageSource Url="http://lorempixel.com/360/360/?93726" Changed="{imageChanged}"  />
</Image>

That depends on what you want to do. Usually the WhileBusy trigger cover many cases.

There is also a Completed trigger in the upcoming release.