modifying tag for the item in tkinter treeview(修改 tkinter 树视图中项目的标签)
问题描述
有什么方法可以修改 tkinter treeview 项目标签吗?我知道如何使用插入命令创建带有标签的项目,但是当我:
is there any way I could modify the the tkinter treeview item tag? I know how to create item with tag with insert command, but when I:
tree.set(tree.selection()[0],0,'some text in red', tags='red')
我得到 TypeError: set() got an unexpected keyword argument 'tags'
最终目标是改变行或列的颜色...谢谢!
The ultimate goal is to change row or column colors... Thanks!
推荐答案
Treeview 上的文档(here 例如)说有一个名为 item
的方法可以用来设置或检索树项的选项.
The documentation on Treeview (here for instance) says that there is a method called item
that can be used to set or retrieve the options of a tree item.
tree.item(iid, "tags")
返回由iid
tree.item(iid, tags=red")
将iid
的标签改为(red",)代码>.您还可以传递标签元组,例如
tags=("bold", "red")
.
tree.item(iid, tags="red")
changes the tags of iid
to ("red",)
. You can also pass a tuple of tags like tags=("bold", "red")
.
这篇关于修改 tkinter 树视图中项目的标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:修改 tkinter 树视图中项目的标签


- ";find_element_by_name(';name';)";和&QOOT;FIND_ELEMENT(BY NAME,';NAME';)";之间有什么区别? 2022-01-01
- 使用 Cython 将 Python 链接到共享库 2022-01-01
- 检查具有纬度和经度的地理点是否在 shapefile 中 2022-01-01
- YouTube API v3 返回截断的观看记录 2022-01-01
- 如何使用PYSPARK从Spark获得批次行 2022-01-01
- CTR 中的 AES 如何用于 Python 和 PyCrypto? 2022-01-01
- 我如何卸载 PyTorch? 2022-01-01
- 计算测试数量的Python单元测试 2022-01-01
- 我如何透明地重定向一个Python导入? 2022-01-01
- 使用公司代理使Python3.x Slack(松弛客户端) 2022-01-01