在页面之间重定向时,Windows Phone 8应用程序崩溃

时间:2014-08-28 05:33:56

标签: windows-phone-8 crash hybrid-mobile-app

我正在开发一款在Android和ios上运行良好的混合应用程序。但在Windows中,有时应用程序在页面之间重定向时崩溃。我在Visual Studio输出窗口中收到以下错误消息。

    System.SystemException
    Microsoft.Phone.Interop.ni.dll but was not handled in user code

它在App.xaml.cs中的以下点打破了应用程序。

    private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
    {
        if (System.Diagnostics.Debugger.IsAttached)
        {
            // An unhandled exception has occurred; break into the debugger
            System.Diagnostics.Debugger.Break();
        }
    }

我不知道代码的哪一部分造成了这种情况,我以前从未见过任何此类崩溃。

请注意这个问题!

期待你的感谢!

0 个答案:

没有答案