真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

認(rèn)識(shí)PyQt5-HelloWorld

from PyQt5.Qt import *
import sys

class Window(QWidget):
    def __init__(self, title):
        self.title = title
        super().__init__()
        self.initUI()
        self.setGeometry(300, 200, 300, 200)
        self.setWindowTitle(self.title)
        self.show()

    def initUI(self):
        btn = QPushButton()
        btn.setParent(self)
        btn.setText("我是按鈕")
        btn.clicked.connect(self.helloWolrd)

    def helloWolrd(self):
        print("這是我的第一個(gè)PyQt程序")

if __name__ == '__main__':
    app = QApplication(sys.argv)
    ex = Window("I AM AESCR")
    sys.exit(app.exec_())

網(wǎng)站名稱(chēng):認(rèn)識(shí)PyQt5-HelloWorld
網(wǎng)頁(yè)地址:http://weahome.cn/article/gseiph.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部