设置QpushButton 大小
时间: 2023-06-12 20:03:31 浏览: 125
要设置QPushButton的大小,可以使用setFixedSize()函数。例如,以下代码将QPushButton的大小设置为100x50像素:
```python
button = QPushButton("Click me")
button.setFixedSize(100, 50)
```
您可以根据需要更改宽度和高度来设置其大小。
相关问题
设置QPushButton的大小
你可以使用 `setFixedSize()` 函数来设置 `QPushButton` 的大小。这个函数会将控件的大小设置为一个固定的值,不会随着窗口大小的改变而改变。
下面是一个示例代码,演示了如何设置 `QPushButton` 的大小:
```python
button = QPushButton("Click me!")
button.setFixedSize(100, 50) # 设置按钮大小为 100x50
```
在这个例子中,我们创建了一个名为 `button` 的 `QPushButton` 对象,并使用 `setFixedSize()` 函数将其大小设置为 100x50 像素。
除了 `setFixedSize()`,还有其他的函数可以用来设置控件的大小,例如 `setMinimumSize()`、`setMaximumSize()` 和 `setSizePolicy()` 等。你可以根据需要选择合适的函数。
设置QPushButton的大小和位置
可以使用`setGeometry`函数来同时设置`QPushButton`的大小和位置,例如:
```
QPushButton* button = new QPushButton("Click me");
button->setGeometry(50, 50, 100, 50);
```
这样就设置了一个位置在(50,50),大小为100x50的按钮。其中前两个参数是按钮的左上角坐标,后两个参数是按钮的宽度和高度。
阅读全文