I would like to display an image file on the UI from the Assets. I managed to store the item as a StorageFile. How can I display it? I’ve tried to display it in a XAML <Image> tag’s Source. Is it possible to covert StorageFile to Image?
string path = @"Assets\mypicture.png";
StorageFile file = await InstallationFolder.GetFileAsync(path);
Try this function