<tfoot id='CITam'></tfoot>
  • <i id='CITam'><tr id='CITam'><dt id='CITam'><q id='CITam'><span id='CITam'><b id='CITam'><form id='CITam'><ins id='CITam'></ins><ul id='CITam'></ul><sub id='CITam'></sub></form><legend id='CITam'></legend><bdo id='CITam'><pre id='CITam'><center id='CITam'></center></pre></bdo></b><th id='CITam'></th></span></q></dt></tr></i><div id='CITam'><tfoot id='CITam'></tfoot><dl id='CITam'><fieldset id='CITam'></fieldset></dl></div>

    <small id='CITam'></small><noframes id='CITam'>

      • <bdo id='CITam'></bdo><ul id='CITam'></ul>
      1. <legend id='CITam'><style id='CITam'><dir id='CITam'><q id='CITam'></q></dir></style></legend>
      2. 修改 tkinter 树视图中项目的标签

        时间:2023-09-03

      3. <small id='c52hH'></small><noframes id='c52hH'>

            <tbody id='c52hH'></tbody>
          • <bdo id='c52hH'></bdo><ul id='c52hH'></ul>

              <tfoot id='c52hH'></tfoot>

                <i id='c52hH'><tr id='c52hH'><dt id='c52hH'><q id='c52hH'><span id='c52hH'><b id='c52hH'><form id='c52hH'><ins id='c52hH'></ins><ul id='c52hH'></ul><sub id='c52hH'></sub></form><legend id='c52hH'></legend><bdo id='c52hH'><pre id='c52hH'><center id='c52hH'></center></pre></bdo></b><th id='c52hH'></th></span></q></dt></tr></i><div id='c52hH'><tfoot id='c52hH'></tfoot><dl id='c52hH'><fieldset id='c52hH'></fieldset></dl></div>
                1. <legend id='c52hH'><style id='c52hH'><dir id='c52hH'><q id='c52hH'></q></dir></style></legend>
                  本文介绍了修改 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 树视图中项目的标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                    <tbody id='iHdeh'></tbody>

                    <tfoot id='iHdeh'></tfoot>
                  1. <small id='iHdeh'></small><noframes id='iHdeh'>

                      <bdo id='iHdeh'></bdo><ul id='iHdeh'></ul>

                        <legend id='iHdeh'><style id='iHdeh'><dir id='iHdeh'><q id='iHdeh'></q></dir></style></legend>

                          <i id='iHdeh'><tr id='iHdeh'><dt id='iHdeh'><q id='iHdeh'><span id='iHdeh'><b id='iHdeh'><form id='iHdeh'><ins id='iHdeh'></ins><ul id='iHdeh'></ul><sub id='iHdeh'></sub></form><legend id='iHdeh'></legend><bdo id='iHdeh'><pre id='iHdeh'><center id='iHdeh'></center></pre></bdo></b><th id='iHdeh'></th></span></q></dt></tr></i><div id='iHdeh'><tfoot id='iHdeh'></tfoot><dl id='iHdeh'><fieldset id='iHdeh'></fieldset></dl></div>