製品開発に対するテストチームのサポートはありませんでした。それで。ユーザーエクスペリエンスを向上させるには、すべての例外をインターセプトして処理する必要があります。Windows Phoneアプリケーションに解決策はありますか?
app.xaml.csファイルのFllowとして。見つけた:
// Code to execute on Unhandled Exceptions
private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
{
if (e.ExceptionObject is QuitException)
return;
if (System.Diagnostics.Debugger.IsAttached)
{
// An unhandled exception has occurred; break into the debugger
System.Diagnostics.Debugger.Break();
}
if (System.Diagnostics.Debugger.IsAttached)
{
// An unhandled exception has occurred; break into the debugger
System.Diagnostics.Debugger.Break();
}
}