ex_qt01.py 202 B

123456789
  1. #引入模块
  2. from PyQt5.QtWidgets import QApplication
  3. from PyQt5.QtWidgets import QDialog
  4. #创建Qt应用
  5. app = QApplication([])
  6. dlg = QDialog()
  7. dlg.show()
  8. app.exec()#让应用程序加入消息循环