我在项目中遇到问题,如果我在App.xaml.cs中的OnStartup代码中获得异常,调试器将首先断点,当我单击继续时,它将在同一位置运行和断点,而不是退出应用程序。 / p>
但是,如果我在App.xaml.cs和 empty 事件处理程序中添加DispatcherUnhandledException事件处理程序,它将按预期工作。
<Application x:Class="WpfApplication8.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
DispatcherUnhandledException="App_DispatcherUnhandledException"
StartupUri="MainWindow.xaml">
<Application.Resources />
</Application>
App.Xaml.cs
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
var b = 4 - 4;
var a = 100/b;
}
void App_DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs args)
{
}
}
从后面的代码重现问题删除事件处理程序。
解决方案详细信息:WPF,.Net 4(包含所有当前更新),Visual Studio 20013更新3.
有人可以解释为什么我会这样做?