我正在使用Qt编写应用程序。制作一个干净的程序,只添加一个组合框和两个按钮。
我添加的唯一代码是:
ui-> groupBox-> setStyleSheet(“background-image:url(/home/ariela/test.png)”);
问题是按钮的背景也显示图像的部分。我希望它们看起来像正常(默认灰色),我无法弄清楚如何做到这一点。
感谢您的帮助
答案 0 :(得分:3)
使用选择器:
ui->groupBox->setStyleSheet("QGroupBox{background-image: url(/home/ariela/test.png);}");
有关styelsheets here的更多信息。