ex_qt01.py 305 B

12345678910111213
  1. from PyQt5.QtWidgets import QApplication
  2. from PyQt5.QtWidgets import QDialog
  3. #创建Qt应用
  4. app =QApplication([])#参数 命令行参数
  5. dlg =QDialog()
  6. dlg.resize(1000,1000)
  7. dlg.move(100,100)
  8. dlg.setWindowTitle("我的窗体")
  9. btn = QPushButton
  10. btn.resize(100,36)
  11. bth.move(200,200)
  12. dlg.show()
  13. app.exec()