PyQT4 和 Ctrl C

发布于 2024-09-26 18:07:56 字数 274 浏览 5 评论 0原文

我有一个运行多个线程的程序(在 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 技术交流群。

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

发布评论

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

评论(1

懵少女 2024-10-03 18:07:56

在 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

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