PyQT4 和 Ctrl C
我有一个运行多个线程的程序(在 while 循环上,直到 Ctrl C 被按下)。该应用程序还有一个我在 PyQt 中开发的 GUI。但是,我面临以下问题:
如果我在控制台上按 Ctrl C,然后关闭 GUI,程序将正常退出。但是,如果我先关闭 GUI,其他线程将不会停止,并且程序在 Ctrl C 之后继续运行。有人知道我该如何解决这个问题吗?
I have a programs that runs several threads (on a while loop until
Ctrl C is pressed). The app also has a GUI that I developed in PyQt. However, I am facing the following problem:
If I press Ctrl C on the console, and then close the GUI, the program exits fine. However, if I close the GUI first, the other threads won't stop and the program keeps running after Ctrl C. Anyone knows how I could address this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Qt 中,您将重载小部件/框架的 OnClose 方法或挂钩 lastwindowsdclose 信号来执行关闭应用程序所需的任何操作 - 不知道它是否与 python 不同
In Qt you would overload the OnClose method for the widget/frame or hook the lastwindowsdclosed signal to do whatever you need to shut down the app - don't know if it's diiferent from python