私の問題は、元のプロジェクトから別のプロジェクト ファイル "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#のバックグラウンドから来ています)。私が見たすべてのアドバイスは、これがうまくいくはずだと私に思わせます.誰かがそれに問題を見たり、他に何が問題であるかを示唆したりできます.