Python:搜索tkinter树视图记录。单击搜索后如何跳转到带标签的记录?

时间:2019-03-29 17:54:33

标签: python-3.x search tkinter tags treeview

我的表有数百条记录,我需要该表自动向下滚动到第一条带标签的记录。

这是我到目前为止所拥有的:

if model in prospects:
    found_rows.append(iid_count) # memorize iid of record in table

--------------------------------------------------

for foundrec in found_rows:
    all_table.item(foundrec, tags="Find_Green") 
#mark matching records green, where "found_rows" is a list of iids that match searching criteria

我希望表格自动向下滚动到第一行突出显示的行,不确定是否可行。

0 个答案:

没有答案