我一直在使用Shawn Wildermuths example,它一直没有问题。然而,今天,我添加了一些自己的模型和ViewModel,它仍然有效。当我开始将属性[RequiresAuthentication]
添加到我的DomainService
时,会出现问题。尽管代码具有异常处理功能,但它更倾向于使Internet Explorer崩溃,而不是显示属于新Silverlight业务应用程序的优秀ErrorWindow
。还有其他人遇到过这个吗?
答案 0 :(得分:1)
private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
{
if (!System.Diagnostics.Debugger.IsAttached)
{
// Remove the ! from the above line
// etc.
}
}
您需要确保:如果应用程序在调试器之外运行,则通过子窗口进行报告。 :)