gpt4 book ai didi

python - Qtablewidget去除PyQt5的空白

转载 作者:太空宇宙 更新时间:2023-11-04 02:28:34 24 4
gpt4 key购买 nike

我正在尝试删除 QTableWidget 中的冗余空间。我正在使用 PyQt5。

这是代码

    self.tableWidget = QtWidgets.QTableWidget(self.centralwidget)
self.tableWidget.setGeometry(QtCore.QRect(10, 10, 500, 351))
self.tableWidget.setRowCount(5)
self.tableWidget.setColumnCount(3)

self.tableWidget.setHorizontalHeaderLabels(["name", "pass", "Id" ])
self.tableWidget.setObjectName("tableWidget")

您可以在下图中看到问题。

enter image description here

最佳答案

您需要使用 stretchLastSection属性

 self.tableWidget.horizontalHeader().setStretchLastSection(True);

关于python - Qtablewidget去除PyQt5的空白,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49773685/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com