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 树视图中项目的标签
基础教程推荐
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
