3

我创建了一个在 Windows 启动时启动的 WPF 应用程序。应用程序检查系统上的文件列表,如果缺少任何文件,则会弹出文件路径。

我面临的问题是当我在应用程序运行时重新启动系统时,重新启动我的应用程序崩溃并抛出 System.Threading.ThreadAbortException。下面是我在事件日志中得到的堆栈跟踪

Application: FileValidator.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.Threading.ThreadAbortException
Stack:
   at System.Windows.Markup.WpfXamlLoader.Load(System.Xaml.XamlReader, System.Xaml.IXamlObjectWriterFactory, Boolean, System.Object, System.Xaml.XamlObjectWriterSettings, System.Uri)
   at System.Windows.Markup.WpfXamlLoader.LoadBaml(System.Xaml.XamlReader, Boolean, System.Object, System.Xaml.Permissions.XamlAccessLevel, System.Uri)
   at System.Windows.Markup.XamlReader.LoadBaml(System.IO.Stream, System.Windows.Markup.ParserContext, System.Object, Boolean)
   at System.Windows.Application.LoadBamlStreamWithSyncInfo(System.IO.Stream, System.Windows.Markup.ParserContext)
   at System.Windows.Application.LoadComponent(System.Uri, Boolean)
   at System.Windows.Application.DoStartup()
   at System.Windows.Application.<.ctor>b__1(System.Object)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate, System.Object, Int32)
   at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
   at System.Windows.Threading.DispatcherOperation.InvokeImpl()
   at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(System.Object)
   at System.Threading.ExecutionContext.runTryCode(System.Object)
   at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode, CleanupCode, System.Object)
   at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
   at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
   at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
   at System.Windows.Threading.DispatcherOperation.Invoke()
   at System.Windows.Threading.Dispatcher.ProcessQueue()
   at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef)
   at MS.Win32.HwndWrapper.WndProc(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef)
   at MS.Win32.HwndSubclass.DispatcherCallbackOperation(System.Object)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate, System.Object, Int32)
   at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
   at System.Windows.Threading.Dispatcher.InvokeImpl(System.Windows.Threading.DispatcherPriority, System.TimeSpan, System.Delegate, System.Object, Int32)
   at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr, Int32, IntPtr, IntPtr)
   at MS.Win32.UnsafeNativeMethods.DispatchMessage(System.Windows.Interop.MSG ByRef)
   at System.Windows.Threading.Dispatcher.PushFrameImpl(System.Windows.Threading.DispatcherFrame)
   at System.Windows.Threading.Dispatcher.PushFrame(System.Windows.Threading.DispatcherFrame)
   at System.Windows.Threading.Dispatcher.Run()
   at System.Windows.Application.RunDispatcher(System.Object)
   at System.Windows.Application.RunInternal(System.Windows.Window)
   at System.Windows.Application.Run(System.Windows.Window)
   at System.Windows.Application.Run()
   at FileValidator.App.Main()

这是什么问题,有没有人遇到过这个问题???

4

2 回答 2

3

如果没有更多的调试信息或代码可供查看,就不可能明确回答,但这听起来像是 CLR 的问题。例如,如果您的应用程序在 CLR 运行时完全初始化之前执行,您可能会遇到一个异常,就像您在这里遇到的异常一样。由于 WPF 主要是托管代码,因此我认为这是一种明显的可能性。

我建议您将启动条目从 HKLM 移动到 HKCU。这样,它应该在用户登录时而不是在 Windows 启动时加载,这应该意味着届时将初始化 CLR。

如果这不起作用,MSDN 建议您对 ThreadAbortExceptions 执行 try/catch。如果 WPF 支持处理,我不记得我的头,但如果是这样,那么我会说如果将执行移动到引导堆栈的用户登录部分不能解决它,那将是你最好的选择。

有用的资源:

http://msdn.microsoft.com/en-us/library/system.threading.threadabortexception.aspx

当加载新的托管应用程序时,是否每次都加载并初始化 CLR?

于 2011-12-12T22:08:17.540 回答
0

你能检查更多细节吗

  • 有没有内部异常?
  • 系统事件日志中是否有任何条目。
  • 请设置性能计数器并检查 clr 的任何故障(perfmon.exe)
  • 希望您了解 DispatcherUnhandledException 等 Application 类中的事件。请订阅这些事件。这将有助于捕获 try{}catch{} 中遗漏的异常
于 2011-12-13T11:17:41.647 回答