0

我正在使用以下代码处理未处理的异常。

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();
        }


        e.Handled = true;
        Error.Exp = e.ExceptionObject;
        (RootVisual as Microsoft.Phone.Controls.PhoneApplicationFrame).Source = new Uri("/Error.xaml", UriKind.Relative);
    }

此代码应将控件定向到Error.xaml页面,但它会以异常的错误消息进入 Visual Studio(即使在注释掉if块之后)。这里有什么问题?

错误的来源是

GeneralTransform generalTransform1 = canvas1.TransformToVisual(start_rec);

错误消息是“未处理参数异常。参数不正确。”

4

1 回答 1

0
        try
        {
                   // do something with your crash , report it or write log
        }
        catch
        {
        }
        if (System.Diagnostics.Debugger.IsAttached)
        {
            // An unhandled exception has occurred; break into the debugger
            System.Diagnostics.Debugger.Break();
        }

调试到异常抛出的地方。

于 2012-10-16T07:17:52.843 回答