找传奇、传世资源到传世资源站!

python_GUI的设计(入门级)

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

介绍了python 使用QT的各种例子,包括基本的GUI,信号灯和信号槽的例子,已经调用dll的例子。python_GUI的设计(入门级) Python-第1张
class Example(QMainWindow):
    def __init__(self):
        super().__init__()
        self.initUI()

    def initUI(self):
        btn1 = QPushButton("Button 1", self)
        btn1.move(30, 50)
        btn2 = QPushButton("Button 2", self)
        btn2.move(150, 50)
        btn1.clicked.connect(self.buttonClicked)
        btn2.clicked.connect(self.buttonClicked)
        self.statusBar()
        self.setGeometry(300, 300, 290, 150)
        self.setWindowTitle('Event sender')
        self.show()

    def buttonClicked(self):
        sender = self.sender()
        self.statusBar().showMessage(sender.text() ' was pressed')

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复