1
在PyQt的我怎麼能強制QTableWidget
只接受一個單一的部分(所以你不能移或CRTL選擇多個項目)?QTableWidget的強制單項目選擇
在PyQt的我怎麼能強制QTableWidget
只接受一個單一的部分(所以你不能移或CRTL選擇多個項目)?QTableWidget的強制單項目選擇
您需要撥打QAbstractItemBiew.setSelectionMode()
或QTableWidget
並附上合適的SelectionBehavior
,您的情況爲QAbstractItemView.SingleSelection
。
所以沿着線的東西:
myTable = QtGui.QTableWidget()
myTable.setSelectionMode(QtGui.QAbstractItemView.SingleSelection)