WPF 应用程序有时会在一段时间后自行关闭

发布于 2024-11-07 04:22:49 字数 178 浏览 0 评论 0原文

该应用程序正在使用我的库,该库使用线程来执行一些操作;它还使用 SIP VOIP 库(显然它使用线程)。 GUI 绑定到两个库的接口。 我注意到我的应用程序有一个奇怪的行为。通常它工作得很好,但有时一段时间(3-5 分钟)后它会突然关闭。
太不规则了,无法调试或诊断。

有人遇到过这样的问题吗?知道这可能是什么原因吗?

The app is using my library which works using threads to do some operation; also it uses SIP VOIP library (obviously it is using threads). GUI is bound to interfaces of both libraries.
I noticed a weird behavior of my app. Usually it works just fine but sometimes after some time (3-5 minutes) it suddenly closes.
It is too irregular to debug it or diagnose.

Anyone had that kind of problem? Any idea what could be the reason for that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少女情怀诗 2024-11-14 04:22:49

我建议您添加一个应用程序级别的错误处理程序,以便您可以记录您可能遗漏的任何正在发生的错误。很简单,

Application.Current.DispatcherUnhandledException += HandleApplicationException;

MSDN 上有一篇文章对其进行了描述:
http://msdn.microsoft.com/en-us /library/system.windows.application.dispatcherunhandledexception.aspx

I would recommend you add an application level error handler so that you can log any errors that are occuring that you might be missing. It is as simple as

Application.Current.DispatcherUnhandledException += HandleApplicationException;

Here is an MSDN article that describes it:
http://msdn.microsoft.com/en-us/library/system.windows.application.dispatcherunhandledexception.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文