我的问题是从我的原始项目导航到另一个项目文件“ChatMeApp/MainPage.xaml”。我的代码是
private void GoToChat(object sender, EventArgs e)
{
this.NavigationService.Navigate(new Uri("/ChatMeApp;component MainPage.xaml", UriKind.RelativeOrAbsolute));
}
当我运行它时,我在 app.xaml.cs 中得到一个异常,它在这里中断
// Code to execute if a navigation fails
private void RootFrame_NavigationFailed(object sender, NavigationFailedEventArgs e)
{
if (System.Diagnostics.Debugger.IsAttached)
{
// A navigation has failed; break into the debugger
System.Diagnostics.Debugger.Break();
}
}
我对 WP8 开发相当陌生(来自 ac# 背景)。我看到的所有建议让我认为这应该可行,任何人都可以看到它的问题或提出其他问题可能是什么。