您好,登錄后才能下訂單哦!
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("這是我的第一個PyQt程序")
if __name__ == '__main__':
app = QApplication(sys.argv)
ex = Window("I AM AESCR")
sys.exit(app.exec_())
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。