我有几行代码在Listbox
时double clicked
打印所选内容,但我想在cursor
double click the selected content to print
旁边显示文字以提示用户在打印之前采取此类行动。
我搜索listbox documentation并发现是一个属性光标,您设置cursor
类型,以便在窗口小部件focus
但未找到cursor-text
之类的内容时显示这样做。我可以通过这种方式来实现这一目标,欢迎您提出建议。
from tkinter import *
def test(event=None):
print("woow test works")
print(l.get(ACTIVE))
root = Tk()
l = Listbox(root, cursor="tcross")
l.pack()
l.insert(END, ("today"),("tomorrow"))
l.bind("<Double-Button-1>", test)
root.mainloop()