如何将持久性委托模型索引恢复为 "normal"
How to revert a persistent Delegate ModelIndex back to "normal"
使用以下方法将委托项设置为持久性后:
tableView.openPersistentEditor(model.index(0, 0))
是否可以将其恢复为 "unpersistent"(犹豫不决)?
您可以使用 closePersistentEditor 关闭给定索引处的永久编辑器:
tableView.closePersistentEditor(model.index(0, 0))
使用以下方法将委托项设置为持久性后:
tableView.openPersistentEditor(model.index(0, 0))
是否可以将其恢复为 "unpersistent"(犹豫不决)?
您可以使用 closePersistentEditor 关闭给定索引处的永久编辑器:
tableView.closePersistentEditor(model.index(0, 0))