I want to take a snapshot once an image is loaded, and here is a code snippet:
imageBrush.ImageOpened += (sender, e) => { doSomething(); };
One problem with this code snippet is that if the image brush is already loaded, the event will not be fired, so I need a way to verify that the image is already loaded but seems like there is no "IsLoaded" property in silverlight. Could you suggest an easy workaround?