【PyQt5】{12} —— 连接带参数的槽函数

连接带参数的槽函数,必须传入一个函数对象,而不是函数的调用结果,因此使用lambda把函数封装成函数对象。
# -*- coding: utf-8 -*-
"""
Created on Sat May  9 12:16:58 2020

@author: Giyn
"""

import sys
from PyQt5.QtWidgets import QApplication, QWidget, QLabel, QPushButton, QVBoxLayout


class Simple_Window(QWidget):
    def __init__(self):
        super(Simple_Window, self).__init__() # 使用super函数可以实现子类使用父类的方法
        self.label = QLabel("I am the original Label", self) # self是指定的父类Simple_Window,表示QLabel属于Simple_Window窗口
        self.button = QPushButton("Button", self)
        
        self.button.clicked.connect(lambda: self.change_label("I am the changed Label")) # 此处要使用匿名函数把函数封装成函数对象
        
        self.v_layout = QVBoxLayout() # 实例化一个QVBoxLayout对象
        self.v_layout.addWidget(self.label)
        self.v_layout.addWidget(self.button)
        
        self.setLayout(self.v_layout) # 调用窗口的setLayout方法将总布局设置为窗口的整体布局
        
    def change_label(self, text):
        self.label.setText(text)
        
        
if __name__ == "__main__":
    app = QApplication(sys.argv)
    window = Simple_Window()
    window.show()
    sys.exit(app.exec())

Output:

When not clicked:

在这里插入图片描述

When clicked:

在这里插入图片描述


Reference:https://study.163.com/course/courseLearn.htm?courseId=1208995818

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章