我使用相机拍摄照片并将其保存到本地,然后单击返回按钮返回 MainPage,我希望将拍摄的照片显示在我的主页中。我在主页中使用以下代码:
MainPage.xaml.cs:
protected async override void OnNavigatedTo(NavigationEventArgs e)
{
var parameter = e.Parameter as StorageFile;
if (parameter != null)
{
Uri uri = new Uri("CapturedImage.jpeg", UriKind.RelativeOrAbsolute);
finalImage.Source = new BitmapImage(uri);
}
}
错误消息是“System.dll 中发生'System.UriFormatException' 类型的异常,但未在用户代码中处理”。如何解决?谢谢