PyQt5筆記(01) -- 創建空白窗體
阿新 • • 發佈:2017-12-24
函數 left self 筆記 import setw qtgui 窗口 init
本節主要介紹如何創建一個PyQt的空白窗體
1 import sys 2 from PyQt5.QtWidgets import QApplication, QWidget 3 from PyQt5.QtGui import QIcon 4 5 class App(QWidget): 6 7 def __init__(self): 8 super().__init__() 9 self.titie = "QT simple window" 10 """用於設置窗體距屏幕左邊的距離""" 11 self.left = 20 12"""用於設置窗體距屏幕上方的距離""" 13 self.top = 20 14 """用於設置窗體的寬度""" 15 self.width = 640 16 """用於設置窗體的高度""" 17 self.height = 480 18 self.initUI() 19 20 def initUI(self): 21 """設置窗體的標題""" 22 self.setWindowTitle(self.titie) 23 """使用setGeometry(left, top, width, height)方法設置窗體的參數""" 24 self.setGeometry(self.left, self.top, self.width, self.height) 25 """通過調用show()函數來顯示窗口""" 26 self.show() 27 28 if __name__ == ‘__main__‘: 29 app = QApplication(sys.argv) 30 ex = App() 31 sys.exit(app.exec_())
PyQt5筆記(01) -- 創建空白窗體