12345678910111213 |
- from PyQt5.QtWidgets import QApplication
- from PyQt5.QtWidgets import QDialog
- #创建Qt应用
- app =QApplication([])#参数 命令行参数
- dlg =QDialog()
- dlg.resize(1000,1000)
- dlg.move(100,100)
- dlg.setWindowTitle("我的窗体")
- btn = QPushButton
- btn.resize(100,36)
- bth.move(200,200)
- dlg.show()
- app.exec()
|