如何让任务栏显示 PyQt4 中的进度条?

发布于 2024-11-26 18:43:03 字数 90 浏览 0 评论 0原文

我使用 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 技术交流群。

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

发布评论

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

评论(2

微暖i 2024-12-03 18:43:04

在 PyQT5 中你必须使用 addWidget()

class ExampleApp(QtWidgets.QMainWindow, mainwindow_test.Ui_MainWindow):
def __init__(self):
    super().__init__()
    self.statusbar.addWidget(self.progressBar)

in PyQT5 you must use addWidget()

class ExampleApp(QtWidgets.QMainWindow, mainwindow_test.Ui_MainWindow):
def __init__(self):
    super().__init__()
    self.statusbar.addWidget(self.progressBar)
寄与心 2024-12-03 18:43:03

是的,您需要设置 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.

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