qpushbutton 设置宽度
时间: 2023-11-05 14:04:39 浏览: 125
QT教程,一行一行地解说
4星 · 用户满意度95%
要设置QPushButton的宽度,可以使用setFixedWidth()函数,例如:
```
QPushButton *button = new QPushButton("Click me");
button->setFixedWidth(100); // 设置宽度为100像素
```
这将设置按钮的宽度为100像素。同样,您也可以使用setFixedHeight()函数来设置按钮的高度。
阅读全文