非 UI スレッドで発生する未処理の例外が、何らかの理由で App_UnhandledException ハンドラによって処理されません。
このアプローチは、Windows Phone アプリが例外をグローバルに処理、追跡、分析するのに適していますが、Windows 8 アプリでは機能しません。
this.UnhandledException += App_UnhandledException; //doesn't handle
private void Button_Click_1(object sender, RoutedEventArgs e)
{
var task = new Task(() => { throw new NullReferenceException("Test exc in UI thread"); });
task.Start();
}
お知らせ下さい。