PyQt5 QTableView设置某一列不可编辑
作者:互联网
class EmptyDelegate(QItemDelegate):
def __init__(self,parent):
super(EmptyDelegate, self).__init__(parent)
def createEditor(self, QWidget, QStyleOptionViewItem, QModelIndex):
return None
写一个代理。
self.tableView.setItemDelegateForColumn(2,EmptyDelegate(self)) # 设置第二列不可编辑
设置一下就可以了。
标签:__,parent,self,init,PyQt5,QTableView,一列,EmptyDelegate,def 来源: https://blog.csdn.net/u013541325/article/details/115123533