ex_qt01.py 196 B

12345678910
  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() #