"pyqt5 删除tableWidget所有的行 并且插入行"
Published on Aug. 22, 2023, 12:07 p.m.
#删除所有行 while task_tableWidget.rowCount() > 0: task_tableWidget.removeRow(0) #插入一行 tableWidget.insertRow(col) #insert new row
Published on Aug. 22, 2023, 12:07 p.m.
#删除所有行 while task_tableWidget.rowCount() > 0: task_tableWidget.removeRow(0) #插入一行 tableWidget.insertRow(col) #insert new row