[SOLVED] QCheckBox background color?
-
AFAIK that's not possible.
But you can replace the whole checkbox (not it's label) with an image of your choice... -
Hi Sam!
Look at this "DarkStyle":http://qt-project.org/forums/viewthread/27978/#126305
maybe you can take some useful things. -
ah..it seems it is possible via stylesheet after all:
@
QCheckBox::indicator
{
background-color: #FFFFFF;
}
@It may be possible that you also have to style the border to take the background-color effect.