1 import sys 2 from PyQt5.QtWidgets import QApplication,QWidget,QPushButton 3 4 app = QApplication(sys.argv) 5 widget = QWidget() 6 btn = QPushButton(widget) 7 btn.setText("Button") 8 # 以QWidget左上角为原点 9 btn.move(20, 20) 10 # 不同的操作系统可能会对窗口的最小宽度有规定,若设置宽度小于规定值,则会以规定值进行显示 11 widget.resize(300, 200) 12 # 以屏幕左上角为原点 13 widget.move(250, 200) 14 15 widget.setWindowTitle('PyQt 坐标系统例子') 16 widget.show() 17 18 print("QWidget:") 19 print("w.x()=%d"% widget.x()) 20 print("w.y()=%d"% widget.y()) 21 print("w.width()=%d"% widget.width()) 22 print("w.height()=%d"% widget.height()) 23 print("QWidget.geometry") 24 print("widget.geometry().x()=%d" % widget.geometry().x()) 25 print("widget.geometry().y()=%d" % widget.geometry().y()) 26 print("widget.geometry().width()=%d" % widget.geometry().width()) 27 print("widget.geometry().height()=%d" % widget.geometry().height()) 28 29 sys.exit(app.exec_())