var bitmapImage = new Windows.UI.Xaml.Media.Imaging.BitmapImage(new Uri(“ms-appx:/Assets/Logo.png”));
Windows.UI.Xaml.Media.ImageBrush image = new Windows.UI.Xaml.Media.ImageBrush()
{
ImageSource = bitmapImage
};
var bitmapImage = new Windows.UI.Xaml.Media.Imaging.BitmapImage(new Uri(“ms-appx:/Assets/Logo.png”));
Windows.UI.Xaml.Media.ImageBrush image = new Windows.UI.Xaml.Media.ImageBrush()
{
ImageSource = bitmapImage
};
Thanks for your help, but how can I now change the Source of my Image?
I found the solution
Thank you very much!
Great, I was thinking of using ../, with relative path, but it is more similar to Windows pone ms-appx: was the point. Thanks
Thank you!! You save me. I would never have thought of using “ms-appx:”