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
Qcheckbox
This works for me:
QPalette p = myCheckBox->palette(); p.setColor(QPalette::Active, QPalette::WindowText, green); myCheckBox->setPalette(p);