Qtablewidget 表格表头的边框和背景去不掉
时间: 2024-03-05 19:50:51 浏览: 107
表格+背景+边框
您可以使用以下代码来去除QTableWidget表头的边框和背景:
```python
tableWidget.horizontalHeader().setStyleSheet("QHeaderView::section { background-color: transparent; border: 0px solid gray; }")
tableWidget.verticalHeader().setStyleSheet("QHeaderView::section { background-color: transparent; border: 0px solid gray; }")
```
这将会把水平和垂直表头的背景和边框设置为透明,并且没有边框。您可以根据需要自定义样式表。
阅读全文