Hi, I have been attempting to make use of MVVM to create an application. I have successfully bound the properties, however, when the application loads up, all of the text binding work as expected but any images will not be displayed. I have called the OnPropertyChanged etc.
this is the xaml (I had to ommit the >< due to the forum setup):
Image x:Name="imgLogo" Source="{local:ImageResource LetSafeMobileApplication.Images.LetSafe_BIG.gif}"/
I also have the extension class
http://pastebin.com/AYqhaHHQ
I notice that, if I create a simple button to update another text property in the view model, the image will be displayed.
If I change the same property as my simple button, but do so in the OnAppear on in the constructor, the image will not be displayed.