qtablewidget居中
时间: 2023-10-04 07:09:52 浏览: 84
QT QTablewidget的使用
4星 · 用户满意度95%
你可以使用以下代码将 QTableWidget 居中显示:
```python
# 设置 QTableWidget 居中显示
tableWidget = QTableWidget()
tableWidget.setStyleSheet("QTableWidget{margin: auto;}")
# 添加表格内容
tableWidget.setRowCount(5)
tableWidget.setColumnCount(3)
for i in range(5):
for j in range(3):
tableWidget.setItem(i, j, QTableWidgetItem(str(i*j)))
# 显示表格
tableWidget.show()
```
这里我们使用 `setStyleSheet()` 函数将 QTableWidget 的样式设置为居中显示。具体来说,我们将其 margin 属性设置为 auto,即自动计算并居中显示。
阅读全文