#引入 from PyQt5.QtWidgets import QApplication from PyQt5.QtWidgets import QDialog from PyQt5.QtWidgets import QMainWindow #创建Qt应用 app=QApplication([])#参数:命令行参数 """  Qt的应用必须在App之间 """ dlg=QDialog() #改变对话框的大小 dlg.resize(1000,1000) dlg.move(100,100)#设置窗体位置 dlg.setWindowTitle("我的窗体") #创建一个按钮 dlg.show() app.exec() #让应用程序进入消息循环