I implemented a File Open Picker into a Universal Windows Platform Application for choosing an image to display in a list item.
However, after getting the image path from the file open picker, the path can't be set as an image source neither as a URI nor network path (tried "file:///" + path).
Is there a way to show an image from a file open picker selected path?
If not, is there any way to open a local image from the computer in the app?
UWP does not support
file://uri scheme, if you open the file with file open picker, you could open the file as stream, and convert it toBitmapImagelike the following.