Search code examples
qtqlistwidgetqlistwidgetitem

How to change the text color of items in a QListWidget?


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.


Solution

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