我正在编写一个创建ttk树视图(用作表格)的简单脚本,当您双击它时,它会打开一个文件(路径保存在字典中)。可以通过以下方法双击打开:
t.bind("<Double-1>", lambda f=nt[x]["URIallegato"]: os.startfile(str(f)))
但是,这并没有给我行的ID(存储在#0
列中)。使用ID,我可以获取保存在字典中的文件的路径。
以下是完整的Treeview
代码:
t=Treeview(w)
t.pack(padx=10,pady=10)
for x in list(nt.keys()):
t.insert("",x,text=nt[x]["allegati"])
if nt[x]["allegati"]!="":
t.bind("<Double-1>",
lambda f=nt[x]["URIallegato"]: os.startfile(str(f)))
谢谢!
答案 0 :(得分:0)
执行此操作的常规方法是在树视图上绑定单个绑定以进行双击。单击的默认绑定将选择该项目,在双击绑定中,您可以向树视图询问所选项目。
如果您将值与树视图项关联,则可以获取它们,以便您不必将它们存储在字典中。
以下是一个例子:
import tkinter as tk
from tkinter import ttk
def on_double_click(event):
item_id = event.widget.focus()
item = event.widget.item(item_id)
values = item['values']
url = values[0]
print("the url is:", url)
root = tk.Tk()
t=ttk.Treeview(root)
t.pack(fill="both", expand=True)
t.bind("<Double-Button-1>", on_double_click)
for x in range(10):
url = "http://example.com/%d" % x
text = "item %d" % x
t.insert("", x, text=text, values=[url])
root.mainloop()