应用文件使用"ms-appdata:///"开头的URI地址,安装包使用的是"ms-appx:///"开头的URI地址。
比如:读取安装包Image文件夹下的test.png
testImage.source=new BitmapImage(new Uri("ms-appx:///Image/text.png"));
注意没有Urikind.Absolute等其他枚举类型,否则会报System.UriFormatException异常
本文共 269 字,大约阅读时间需要 1 分钟。
应用文件使用"ms-appdata:///"开头的URI地址,安装包使用的是"ms-appx:///"开头的URI地址。
比如:读取安装包Image文件夹下的test.png
testImage.source=new BitmapImage(new Uri("ms-appx:///Image/text.png"));
注意没有Urikind.Absolute等其他枚举类型,否则会报System.UriFormatException异常
转载于:https://www.cnblogs.com/witchy/p/4047019.html