我想知道是否可以在QGroupBox中显示图像而不是文本,但我想实现以下样式
有什么建议么 ?
最佳答案
http://qt-project.org/doc/qt-4.8/stylesheet-examples.html#customizing-qgroupbox
您可以尝试类似:
groupBox->setStyleSheet(
"QGroupBox::indicator {"
"width: 13px;"
"height: 13px;"
"}"
"QGroupBox::indicator:unchecked {"
"image: url(:/images/checkbox_unchecked.png);"
"}"
);
希望能有所帮助。
关于c++ - 如何在QGroupBox的角上放置图像-StyleSheet,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20185240/