要将QPushButton的背景颜色设置为蓝色,你可以使用以下代码:
QPushButton* sendButton = new QPushButton("发送");
sendButton->setStyleSheet("background-color: blue;");
在这个示例中,我们使用setStyleSheet
方法来设置按钮的样式表。通过将background-color
属性设置为蓝色,即可将按钮的背景颜色更改为蓝色。
希望对你有所帮助!如果还有其他问题,请随时提问。
内容由零声教学AI助手提供,问题来源于学员提问