如题,程序出异常时不停止在异常的地方,而是进入App.xaml.cs中(下面代码处)。
// 出现未处理的异常时执行的代码
private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
{
if (Debugger.IsAttached)
{
// 出现未处理的异常;强行进入调试器
Debugger.Break();
}
}
------解决思路----------------------
你在异常的地方try catch