如何让任务栏显示 PyQt4 中的进度条?
我使用 PyQt4 在我的应用程序中显示进度条,但我希望它也能在任务栏上看到,就像 winRAR 和 google chrome 等许多程序一样。有办法做到这一点吗?
I'm using PyQt4 to display a progress bar in my application, but I want it to also be seen on the taskbar, just like many programs such as winRAR and google chrome do. Is there a way to make that happen?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 PyQT5 中你必须使用 addWidget()
in PyQT5 you must use addWidget()
是的,您需要设置 QProgressBar (不是 QProgressBarDialog)并使用 insertWidget(),然后在完成后使用removeWidget将其删除 它。
Yes, you'll want to setup your QProgressBar (not QProgressBarDialog) and insert into QStatusBar (or QMainWindow.statusBar()) with the insertWidget(), then use removeWidget to remove it when you're done with it.