我正在使用以下代码处理未处理的异常。
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);
错误消息是“未处理参数异常。参数不正确。”