提问人:jordanthompson 提问时间:7/27/2023 更新时间:7/27/2023 访问量:16
如何更改 QTableWidget 标题的背景
How do you change the background of a QTableWidget heading
问:
我可以更改前景色,但不能更改背景色。
我试过:
for col in range(self.table.columnCount()):
item = self.table.horizontalHeaderItem(col)
item.setForeground(foreground) # foreground changes as expected
item.setBackground(foreground) # does not affect the background color
和:
self.table.horizontalHeader().setStyleSheet("color: red; background-color: blue")
任何建议将不胜感激
答: 暂无答案
评论