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 树视图中项目的标签
基础教程推荐
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
