将WP7.0项目更新为WP7.1后导航失败

时间:2011-08-15 02:10:41

标签: c# windows-phone-7

Previosuly我的应用程序中有照片选择器任务

当我更改为Windows Phone 7.1选择器启动时但是当我点击图片时,它会想要导航到另一个页面。

代码:

photoChooserTask.Show();

void photoChooserTask_Completed(object sender, PhotoResult e)

{

   if (e.TaskResult == TaskResult.OK)

 {

   App.globalData.bitmapImage.SetSource(e.ChosenPhoto);

 NavigationService.Navigate(new Uri("/ChangePhoto.xaml", UriKind.Relative));

  }

  }

错误是我点击图片“System.Diagnostics.Debugger.Break();”

1 个答案:

答案 0 :(得分:0)

app.xaml.cs 文件中有System.Diagnostics.Debugger.Break次调用。它们存在未处理的异常和导航错误。错误将在方法参数中,在调试器中断时进行检查。

导航错误很可能是错误的URI路径。