gpt4 book ai didi

python-3.x - Python TreeView 更新标签

转载 作者:行者123 更新时间:2023-12-04 00:11:32 25 4
gpt4 key购买 nike

我已将项目插入带有标签选项的 Python treeview

tree.insert("", 'end', 'item1', text='item1', tags=('new',))

是否可以稍后将标签 “new” 更改为其他内容?

最佳答案

您可以修改项目的任何选项。因此,如果您想将 'item1' 标签更改为例如 'old':

tree.item('item1', tags=('old'))

来自 Python docs关于ttk.Treeview:

item(item, option=None, **kw) Query or modify the options for the specified item.

If no options are given, a dict with options/values for the item is returned. If option is specified then the value for that option is returned. Otherwise, sets the options to the corresponding values as given by kw.

关于python-3.x - Python TreeView 更新标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34619372/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com