I would like to change a slider's background color, but this code does not work:
QPalette p( ui->verticalScrollBar->palette());
p.setColor( QPalette::Window, Qt::red );
ui->verticalScrollBar->setPalette(p);
I would like to change a slider's background color, but this code does not work:
QPalette p( ui->verticalScrollBar->palette());
p.setColor( QPalette::Window, Qt::red );
ui->verticalScrollBar->setPalette(p);
Take a look at the Qt documentation, they have an example on customising a QSlider: Qt Style Sheets Examples — Customzing QSlider.
Changing the background
property of the CSS class QSlider::groove
should do the trick.
I prefer to use the stylesheet on the Qt controls. This should set the background color to red.
Answer is also here:
QSlider handle is being hidden when changing the background of the groove