对pyqt5多线程正确的开启姿势详解
时间:2020-12-18 01:03:16|栏目:Python代码|点击: 次
如下所示:
# -*- coding: utf-8 -*-
import sys
from PyQt5.QtCore import QThread, pyqtSignal
from PyQt5.QtWidgets import QApplication, QMainWindow, QWidget, QMessageBox, \
QPushButton, QLineEdit, QLabel, QToolTip, QComboBox, QTextEdit
class MyBeautifulClass(QMainWindow):
def __init__(self):
super(MyBeautifulClass, self).__init__()
self.init_ui()
def init_ui(self):
self.resize(1000, 800)
self.setWindowTitle('Demo of PyQt5 QThread')
self.btn_1 = QPushButton('start', self)
self.btn_1.setGeometry(100, 100, 100, 50)
self.btn_1.clicked.connect(self.slot_btn_1)
self.linEdit_2 = QLineEdit(self)
self.linEdit_2.setGeometry(100, 400, 300, 50)
def slot_btn_1(self):
self.mbt = MyBeautifulThread()
self.mbt.trigger.connect(self.slot_thread)
self.mbt.start()
def say_love(self):
print('say love')
def slot_thread(self, msg_1, msg_2):
self.linEdit_2.setText(msg_1 + msg_2)
class MyBeautifulThread(QThread):
trigger = pyqtSignal(str, str)
def __init__(self):
super(MyBeautifulThread, self).__init__()
def run(self):
w = MyBeautifulClass()
w.say_love()
self.trigger.emit('Lo', 've')
def main():
app = QApplication(sys.argv)
w = MyBeautifulClass()
w.show()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
上一篇:Python实现的Google IP 可用性检测脚本
栏 目:Python代码
下一篇:python通过imaplib模块读取gmail里邮件的方法
本文标题:对pyqt5多线程正确的开启姿势详解
本文地址:http://www.codeinn.net/misctech/33897.html






