Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Qt Designer 为 Python 脚本创建了 GUI。
当我尝试使用
Ui.plainTextBrowser.insertPlainText("anythong")
在plainTextBrowser函数完成之前,不会填充文本,然后它会一次完成。我怎样才能让它实时填充?我正在尝试使用它来更新用户的进度。
plainTextBrowser
从您的应用程序(QtGui.QApplication)调用 processEvents() 函数:
app.processEvents()