pyqt5 setGeometry
时间: 2023-05-21 11:07:10 浏览: 459
PyQt5的setGeometry()方法用于设置窗口的大小和位置。它的语法是:
setGeometry(x, y, width, height)
其中,x和y是窗口左上角的坐标,width和height是窗口的宽度和高度。例如:
window.setGeometry(100, 100, 640, 480)
这个方法将窗口的左上角移动到坐标(100, 100),并将窗口的宽度设置为640像素,高度设置为480像素。
相关问题
pyqt5 setGeometry(QtCore.QRect
这是一个 PyQt5 中的方法,用于设置控件的位置和大小。
具体用法:
```
控件.setGeometry(x, y, width, height)
```
其中,x 和 y 是控件左上角的坐标,width 和 height 是控件的宽度和高度。
举个例子:
```
button = QtWidgets.QPushButton("Hello, World!", self)
button.setGeometry(QtCore.QRect(10, 10, 100, 30))
```
这段代码创建了一个按钮,并将其放在窗口左上角,大小为 100x30 像素。
pyqt setGeometry的单位
在 PyQT 中,setGeometry() 函数的单位是像素(pixel)。它接受四个参数,分别是 x 坐标、y 坐标、宽度和高度,都用像素作为单位。例如:
```python
widget.setGeometry(100, 100, 200, 200)
```
这将把 widget 放置在窗口的 (100, 100) 坐标处,宽度为 200 像素,高度为 200 像素。
阅读全文