在 Qtableview 上设置具有颜色(red/green/黄色)的特定单元格

Setting a particular cell with a color (red/green /yellow) on Qtableview

我一直在寻找如何在 qtableview 的特定单元格上设置颜色。 目前,我正在使用 qt 示例冻结列来查看如何在特定单元格上设置颜色。
我在论坛上搜索关于如何告诉使用 qitemdelegate 或 qstyleitemdelegate 绘制背景或前景单元格但无效。

有人可以启发我或在代码中展示我应该如何去做的例子。

我能想到的最快的方法是使用标准项目的setData方法:

QStandardItemModel model;
QStandardItem item;
item.setData(QBrush(Qt::gray), Qt::BackgroundColorRole); //background color
model.setItem(x, y, &item);

在此示例中,您设置了背景颜色。描述了不同的角色(作为第二个参数传递)here