pyside6 qtablewidget 新增行删除行
时间: 2023-10-25 12:06:57 浏览: 291
实例QT程序 —— QTableWidget 表格新增/删除行功能
5星 · 资源好评率100%
可以使用QTableWidget的insertRow()和removeRow()方法来新增和删除行。例如:
新增行:
```python
row_position = self.tableWidget.rowCount()
self.tableWidget.insertRow(row_position)
```
删除行:
```python
selected_row = self.tableWidget.currentRow()
self.tableWidget.removeRow(selected_row)
```
请注意,在使用这些方法之前,您需要确保表格中至少有一行。
阅读全文