如何让 PyQT 程序不断刷新一个小部件,始终提供最新值?
我正在学习使用 PyQT4 和 Python 进行编程。我正在尝试编写一个简单的应用程序,它将在 QLCD 小部件中显示当前的 CPU 使用情况。对于 CPU 使用情况,我使用 psutils 模块。
问题是CPU使用率不会一直更新——它只记录应用程序启动时的CPU使用率(我猜),然后就停止了。因此,我正在寻找某种类似的循环,希望不会占用太多的 CPU 处理能力。
这就是我到目前为止所拥有的:
self.wpCpuUsage.display(cpu_percent(interval=1))
这是在 QMainWindow 类的 __init__ 内。
我尝试将其放入 for 循环中,但随后它会对其进行迭代,并且基本上等待它迭代,然后执行程序。
帮助?
I'm learning to program with PyQT4 and Python. I'm trying to code a simple app that will display the current CPU usage in a QLCD widget. For CPU usage I'm using psutils module.
The problem is that the CPU usage is not updated all the time - it only records the CPU usage at the moment the app has been launched (I'm guessing), and then it just stops. So, I'm looking for some sort of a loop equivalent that will hopefully not take too much of CPU power to process.
This is what I have so far:
self.wpCpuUsage.display(cpu_percent(interval=1))
and this is within __init__ of the QMainWindow class.
I've tried putting it in a for loop, but then it iterates over it, and basically waits for it to iterate and then executes the program.
Help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
QTimer
[参考] 带有回调的对象。类似的东西应该有效:
You can use a
QTimer
[reference] object with a callback.Something like that should work: