QTableWidget - 改变行颜色
QTableWidget - Change the row color
我正在尝试更改 QTableWidget 行的背景颜色。还有一些关于同一件事的其他帖子,但 none 给定的解决方案对我有用。
使用该解决方案,我们将 table 中已有项目的背景设置为第 0 行第 1 列项目的浅灰色:
self.table.item(1,0).setBackground(QtGui.QColor(125,125,125))
它工作正常,但如果您有多个 table,则通过迭代为行设置背景需要更多时间。 我需要一个函数来通过仅传递行索引来更改行背景!
没有执行此任务的函数,但我们可以创建它,例如:
def setColortoRow(table, rowIndex, color):
for j in range(table.columnCount()):
table.item(rowIndex, j).setBackground(color)
我正在尝试更改 QTableWidget 行的背景颜色。还有一些关于同一件事的其他帖子,但 none 给定的解决方案对我有用。
使用该解决方案,我们将 table 中已有项目的背景设置为第 0 行第 1 列项目的浅灰色:
self.table.item(1,0).setBackground(QtGui.QColor(125,125,125))
它工作正常,但如果您有多个 table,则通过迭代为行设置背景需要更多时间。 我需要一个函数来通过仅传递行索引来更改行背景!
没有执行此任务的函数,但我们可以创建它,例如:
def setColortoRow(table, rowIndex, color):
for j in range(table.columnCount()):
table.item(rowIndex, j).setBackground(color)