0

在登录页面,我检查了有效性并做了一个简单的条件:

if (everything is good)
{
    this.NavigationService.Navigate(new Uri("/implementationPage.xaml", UriKind.Relative)); 
}

然后出现指向此方法的错误:

private void RootFrame_NavigationFailed(object sender, NavigationFailedEventArgs e)
{
    if (System.Diagnostics.Debugger.IsAttached)
    {
        MessageBox.Show(string.Format("page {0} failed, error: {1}", e.Uri.ToString(), e.Exception.StackTrace));
        e.Handled = true; 
        // A navigation has failed; break into the debugger
        System.Diagnostics.Debugger.Break();
     }
}

有谁知道我为什么会出错?

4

1 回答 1

0

谢谢卡洛斯,

在网上查了很多资料

http://dotnetslackers.com/articles/silverlight/Windows-Phone-7-Silverlight-Programming-Navigation-between-Pages.aspx

这非常方便。我显然没有完全利用 onNavigatedTo 功能

于 2012-11-30T11:55:35.533 回答