I\'m having a little issue here in showing images.
So when I\'m trying to load images from XAML, I can use a relative uri to the image source like this :
<
You can also use it with BaseUri.
BitmapImage bitmapImage = new BitmapImage(new Uri(this.BaseUri, "/Assets/image.jpg"));
Assets is a folder name and you can change it with your any custom folder name :)