PyQt 的 show() 阻塞版本

发布于 2024-09-04 03:20:53 字数 385 浏览 5 评论 0原文

我有一个相当CPU 密集型的应用程序,但所有CPU 密集型的东西都是通过单击QPushButton 启动的。单击该按钮时,会显示一个隐藏的 QLabel()n。

显然,show() 是非阻塞的。不幸的是,这意味着在标签 show() 启动之前,CPU 密集型的工作实际上已经完成了一半。

如何屏蔽节目?或者如何让标签在单击按钮时正确显示()?

相关代码:

def parseFile(self):
    self.refreshLabel.show() #hidden by default
    self.parse_triggered.emit()

parse_triggered导致父类调用parse()函数,这非常消耗CPU。

I've got a fairly cpu-intensive application, but all of the cpu-intensive stuff is started by clicking a QPushButton. When the button is clicked, a hidden QLabel is show()n.

Apparently, show() is non-blocking. Unfortunately, this means that the cpu-intensive stuff is practically half-done before the label show()s up.

How can I make show blocking? Or how can I make the label show() right when I click the button?

Relevant code:

def parseFile(self):
    self.refreshLabel.show() #hidden by default
    self.parse_triggered.emit()

parse_triggered causes the parent class to call the parse() function, which is pretty cpu-intensive.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

剑心龙吟 2024-09-11 03:20:53

尝试在调用 show 之后调用 processEvents()

Try calling processEvents() after the call to show.

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