怎么设置Pyqt5表格控件不能编辑
时间: 2023-10-25 19:25:25 浏览: 631
QTableWidget 设置某一列禁止编辑
你可以使用`setEditTriggers`函数将表格控件的编辑模式设置为只读,从而使其不能编辑。具体方法如下:
```python
# 获取表格控件
table = QtWidgets.QTableWidget()
# 将表格控件的编辑模式设置为只读
table.setEditTriggers(QtWidgets.QAbstractItemView.NoEditTriggers)
```
上述代码将表格控件的编辑模式设置为只读,即用户不能编辑表格中的内容。
阅读全文