qpushbutton设置背景色灰色
时间: 2023-05-17 21:02:57 浏览: 659
MyButton灰色效果
可以使用setStyleSheet函数来设置QPushButton的背景色,具体代码如下:
QPushButton *button = new QPushButton("Button");
button->setStyleSheet("background-color: gray;");
这样就可以将QPushButton的背景色设置为灰色了。
阅读全文
MyButton灰色效果