17. PyQt6 触发信号
2023-10-17 python 420
import sys from PyQt6.QtWidgets import QApplication, QMainWindow from PyQt6.QtGui import QGuiApplication from PyQt6.QtCore import QObject, pyqtSignal class ComThread(QObject): closeApp = pyqtSignal() class App(QMainWindow): def __init__(self): super().__init__() self.initUI() def initUI(self): self.setWindowTitle("PyQt6 触发信号") self.c = ComThread() self.c.closeApp.connect(self.close) self.setGeometry(100, 100, 400, 300) self.center() def mousePressEvent(self, e): self.c.closeApp.emit() def center(self): qr = self.frameGeometry() cp = QGuiApplication.primaryScreen().availableGeometry().center() qr.moveCenter(cp) self.move(qr.topLeft()) if __name__ == "__main__": app = QApplication(sys.argv) cls_app = App() cls_app.show() sys.exit(app.exec())
很赞哦! (0)
相关文章
文章评论
-
-
-
0条评论