我正在創建Windows Phone 8.1 xaml應用程序。我用SlideView : a Facebook-like panel for Windows Phone。但每當我通過放置在幻燈片視圖中的按鈕點擊導航到新頁面時,應用程序崩潰。從按鈕外部視圖導航成功。應用程序崩潰而不會在windows phone 8.1中引發任何異常xaml
壞事就像它沒有拋出任何類型的例外或細節。即使這不是在App UnhandledException
事件中發生。
public App()
{
this.InitializeComponent();
this.UnhandledException += App_UnhandledException;
}
void App_UnhandledException(object sender, UnhandledExceptionEventArgs e)
{
//not throwing exception here
}
我想知道,什麼時候會發生這種情況?如何獲取結果應用程序崩潰的異常詳細信息?如果我能夠得到確切的問題,我可以解決這個問題。
請爲我提供解決方案。我的示例是here
如果內存服務:您應該查找OnNavigatedTo或類似的異常。你有沒有看過http://msdn.microsoft.com/en-us/library/system.windows.navigation.navigationservice.navigationfailed(v=vs.110).aspx也許? –
導航時,頁面的OnNavigated to方法中的整個代碼正在運行,然後應用程序崩潰。 – asitis