我正在使用以下代码:
String filepath = e.fullpath;
Image.source = new BitmapImage(new uri(filepath));
文件路径输出是:
file:///c://Folder//Location//Name.jpg
为Image.Source抛出错误
图片所需的路径格式:
c:/Folder/Location/name.jpg
请帮助,
提前谢谢
答案 0 :(得分:0)
试试这个:
String filepath = e.fullpath;
Image.source = new BitmapImage(new Uri(filepath).LocalPath);