ex_qt01.py 442 B

12345678910111213141516171819
  1. #引入
  2. from PyQt5.QtWidgets import QApplication
  3. from PyQt5.QtWidgets import QDialog
  4. from PyQt5.QtWidgets import QMainWindow
  5. #创建Qt应用
  6. app=QApplication([])#参数:命令行参数
  7. """
  8.  Qt的应用必须在App之间
  9. """
  10. dlg=QDialog()
  11. #改变对话框的大小
  12. dlg.resize(1000,1000)
  13. dlg.move(100,100)#设置窗体位置
  14. dlg.setWindowTitle("我的窗体")
  15. #创建一个按钮
  16. dlg.show()
  17. app.exec() #让应用程序进入消息循环