该文件是我工作区中的app1.py。 import sysimport qgisfrom PyQt5.QtWidgets import QApplication, QWidget, QLabeldef window(): app = QApplication(sys.argv) widget = QWidget() textLabel = QLabel(widget) textLabel.setText("Hello World!") textLabel.move(110,85) widget.setGeometry(50,50,320,...