I\'m unable to change the color of Qcheckbox in QT, can somebody help me with code to change color of check box text label.
I have tried
Looks like for some widgets you have to force using non-system "widget-engine". For checkbox it can be done by setting borders to none. So checkbox's style looks like:
QCheckBox {
border: none;
color: white;
}
Similar behavior is required by other widgets. Some style-properties do not disable native look. For example QPushButton (http://doc.qt.io/qt-4.8/stylesheet-reference.html)