每当我的C#应用程序遇到U-E时,我想获得Default Windows Forms Unhandled-Exception Dialog。 在vs 2005中,我在app.conf中关闭jit Debugging,如下所示:
<configuration>
<system.windows.forms jitDebugging="false" />
<configuration>
应用程序行为正常,并显示Windows窗体U-E默认对话框,包括继续,退出,调用堆栈等。
然而在vs 2008中,在同一台机器上或不同的机器上,即使我使用jit jit,我仍然可以通过Debug,Send Report和Do not Send按钮获得Default .NET Unhandled-Exception Dialog。
如何让我的vs 2008应用程序像我在vs 2005中制作的那样,显示Windows Forms U-E对话框?
请不要建议使用
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
因为我在我的vs 2005项目中没有使用自定义处理程序,为什么我会在vs 2008中使用?我想让这份工作做CLR。
感谢任何帮助
答案 0 :(得分:13)
您正在谈论不同的异常处理功能。您通过退出和继续按钮看到的ThreadExceptionDialog由Application.ThreadException event触发。只有在UI线程上发生异常时才会出现,当响应Windows消息而运行的事件处理程序抛出异常时。但是,工作线程中的任何异常都会通过AppDomain.UnhandledException轰炸程序。
你无法处理后者,程序已经死了,无法继续。显示ThreadExceptionDialog是没有意义的。
通过调用Application.SetUnhandledExceptionMode()来禁用ThreadException事件,可以一致地制作程序炸弹。现在每个未处理的异常都会触发AppDomain.UnhandledException并终止程序。这可能不是你想要的,但却是明智的选择。
另请注意,使用调试器运行程序时,将禁用ThreadException事件。这可能就是为什么你看到VS2008的不同之处。否则没有任何变化。
答案 1 :(得分:0)
Answer by Hans Passant似乎很明智。但是,即使您说您不想,我仍然建议a handler on AppDomain.CurrentDomain.UnhandledException
确保您确定应用程序意外崩溃时会发生什么。