当我使用QTreeView
以编程方式选择item_selected('Item2')
中的选择时,选择会按预期传递给处理程序。我也希望这个项目有一个选择亮点,但我似乎无法弄明白。有什么想法吗?
from PyQt5.Qt import Qt
from PyQt5.QtWidgets import QApplication, QTreeWidget, QTreeWidgetItem
import sys
def item_selected(selection):
try:
print(selection.text(0))
except AttributeError:
print(selection)
app = QApplication(sys.argv)
TreeList = ({
'Header1': (('Item1', 'Item2', )),
'Header2': (('Item11', 'Item21', )),
})
tree = QTreeWidget()
for key, value in TreeList.items():
parent = QTreeWidgetItem(tree, [key])
for val in value:
child = QTreeWidgetItem([val])
child.setFlags(child.flags() | Qt.ItemIsUserCheckable)
child.setCheckState(0, Qt.Unchecked)
parent.addChild(child)
tree.itemClicked.connect(item_selected)
tree.show()
# SELECT AND HIGHLIGHT THIS ONE
item_selected('Item2')
sys.exit(app.exec_())
很抱歉,如果上面的代码很乱。
答案 0 :(得分:2)
你不能使用相同的插槽,它接收一个项目,只打印它,在你需要搜索项目的文本并选择它:
def item_selected(selection):
print(selection.text(0))
app = QApplication(sys.argv)
TreeList = ({
'Header1': (('Item1', 'Item2', )),
'Header2': (('Item11', 'Item21', )),
})
tree = QTreeWidget()
for key, value in TreeList.items():
parent = QTreeWidgetItem(tree, [key])
for val in value:
child = QTreeWidgetItem([val])
child.setFlags(child.flags() | Qt.ItemIsUserCheckable)
child.setCheckState(0, Qt.Unchecked)
parent.addChild(child)
tree.itemClicked.connect(item_selected)
items = tree.findItems("Item2", Qt.MatchFixedString| Qt.MatchRecursive)
[it.setSelected(True) for it in items]
tree.expandAll()
tree.show()
sys.exit(app.exec_())