WPF 应用程序有时会在一段时间后自行关闭
该应用程序正在使用我的库,该库使用线程来执行一些操作;它还使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您添加一个应用程序级别的错误处理程序,以便您可以记录您可能遗漏的任何正在发生的错误。很简单,
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
Here is an MSDN article that describes it:
http://msdn.microsoft.com/en-us/library/system.windows.application.dispatcherunhandledexception.aspx