Question

I want to change the text color of the items in QListWidget.
For example, some items are in red text while others are in blue text. How do I do that? Thank you.

Was it helpful?

Solution

QListWidget t;
t.addItem("first");
t.addItem("second");
t.item(0)->setForeground(Qt::red);
t.item(1)->setForeground(Qt::blue);

OTHER TIPS

This can also be done by stylesheets. E.g.:

QListWidget::item {
    color:#00ff00;
    background-color:transparent;
}

Set it by setStylesheet(...)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top