博客
关于我
PyQt5“定时器不能从另一个线程启动“更改 QLabel 的大小时出错
阅读量:806 次
发布时间:2023-03-05

本文共 3511 字,大约阅读时间需要 11 分钟。

在 PyQt5 中跨线程操作的解决方案

在 PyQt5 中,由于 GUI 组件的创建和修改通常必须在主线程(QApplication 的实例所在线程)中进行,因此你不能从其他非主线程中启动定时器或者更改标签的大小等操作。以下是一些解决这一问题的方法。

方法一:使用 pyqtSignalmoveToThread

首先,你需要定义一个信号,然后在主线程中连接这个信号到一个槽函数,然后从槽函数中启动定时器或修改标签大小。

import sysfrom PyQt5.QtWidgets import QApplication, QLabel, QPushButtonfrom PyQt5.QtCore import QObject, Qt, pyqtSignal, QThread, Timer
class Worker(QObject):    updateText = pyqtSignal(str)    def __init__(self):        super().__init__()        self.timer = Timer()        self.timer.timeout.connect(self.on_timer_timeout)        self.timer.start(1000)  # 每秒触发一次    @pyqtSlot()    def onTimerTimeout(self):        newText = "New Text"        self.updateText.emit(newText)
class MainWindow(QWidget):    def __init__(self):        super().__init__()        self.label = QLabel("Initial Text")        layout = QVBoxLayout()        layout.addWidget(self.label)        button = QPushButton("Start")        button.clicked.connect(self.start_worker)        layout.addWidget(button)        self.setLayout(layout)    def start_worker(self):        if not hasattr(self, 'worker'):            self.worker = Worker()            self.worker.updateText.connect(self.on_text_updated)
app = QApplication([])window = MainWindow()window.show()if __name__ == '__main__':    sys.exit(app.exec_())

方法二:使用 QThreadPoolmoveToThread

另一种方法是将任务放入一个线程池中执行。

import sysfrom PyQt5.QtWidgets import QApplication, QLabel, QPushButtonfrom PyQt5.QtCore import Qt, pyqtSignal, QObject, QRunnable, QThreadPool
class Worker(QObject):    updateText = pyqtSignal(str)    def __init__(self):        super().__init__()        self.timer = Timer()        self.timer.timeout.connect(self.on_timer_timeout)        self.timer.start(1000)  # 每秒触发一次    @pyqtSlot()    def onTimerTimeout(self):        newText = "New Text"        self.updateText.emit(newText)
class WorkerRunnable(QRunnable):    def __init__(self, worker):        super().__init__()        self.worker = worker    def run(self):        self.worker.start()
if __name__ == '__main__':    app = QApplication([])    window = MainWindow()    window.show()    thread_pool = QThreadPool()    worker = Worker()    runnable = WorkerRunnable(worker)    thread_pool.start(runnable)    worker.updateText.connect(lambda text: window.label.setText(text))    sys.exit(app.exec_())

方法三:使用 QMetaObject.invokeMethod

如果你不能使用信号槽机制(如上两种方法),可以尝试通过 QMetaObject.invokeMethod 来间接在主线程中执行操作。

import sysfrom PyQt5.QtWidgets import QApplication, QLabelfrom PyQt5.QtCore import Qt, pyqtSlot, QThreadPool, QRunnable, QMetaObject
class Worker(QObject):    def __init__(self, label):        super().__init__()        self.label = label        self.timer = Timer()        self.timer.timeout.connect(self.on_timer_timeout)        self.timer.start(1000)
@pyqtSlot()    def onTimerTimeout(self):        newText = "New Text"        QMetaObject.invokeMethod(self.label, "setText", Qt.DirectConnection,                                pyqtArgs(newText))
class MainWindow(QWidget):    def __init__(self):        super().__init__()        self.label = QLabel("Initial Text")        layout = QVBoxLayout()        layout.addWidget(self.label)        button = QPushButton("Start")        button.clicked.connect(self.start_worker)        layout.addWidget(button)        self.setLayout(layout)    def start_worker(self):        if not hasattr(self, 'worker'):            self.worker = Worker(self.label)
if __name__ == '__main__':    app = QApplication([])    window = MainWindow()    window.show()    sys.exit(app.exec_())

转载地址:http://hdafk.baihongyu.com/

你可能感兴趣的文章
python 函数学习
查看>>
Python 分析天气,告诉你中秋应该去哪里
查看>>
Python 列表删除相同的元素
查看>>
Python 初学者需要知道的四条建议
查看>>
Python 判断字符串是否包含子字符串
查看>>
python 判断当前时间是否为零点
查看>>
python 利用pandas读取本地中CSV文件的指定列 列名重命名 并保存回本地
查看>>
python 利用pyspark读取HDFS中CSV文件的指定列 列名重命名 并保存回HDFS
查看>>
python 利用pyttsx3文字转语音
查看>>
python 利用已有Ner模型进行数据清洗合并
查看>>
python 到大数据开发工程师_如何成为一个大数据开发工程师?
查看>>
python 加密解密(base64, AES)
查看>>
Python 和Java 哪个更适合做自动化测试?
查看>>
python 图片转ico
查看>>
python 图片转文字、语音转文字、文字转语音保存音频并朗读
查看>>
python 在包含类似字符\x16、\x12、\x某某的数组中将以\x开头的字符找出来的方法
查看>>
Python 在并行进程之间共享字典
查看>>
Python 垃圾收集器文档
查看>>
python 基于 wordcloud + jieba + matplotlib 生成词云
查看>>
python 基于detectron或mask_rcnn的mask遮罩区域进行图片截取
查看>>