When the Image\'s Source property is set the following way, the picture is taken from /Images/down.png.
/Images/down.png
How would I do the same thing programmatically?
{yourImageName.Source = new BitmapImage(new Uri("ms-appx:///Assets/LOGO.png"));}
LOGO refers to your image
Hoping to help anyone. :)