当我尝试在 windows phone 8 应用程序中将 jpg 读入 BitmapImage 时,我收到以下错误:
System.UnauthorizedAccessException
我正在阅读它,它告诉我需要检查应用程序清单文件中的照片功能,我做了。我仍然得到错误。
我要读的代码是:
System.Windows.Media.Imaging.BitmapImage b =
new System.Windows.Media.Imaging.BitmapImage(new Uri(@"cat.jpg",
UriKind.RelativeOrAbsolute));
这个错误还有其他原因吗?