Mar-06-2020, 07:20 PM
I use tkinter and have several entries
now i'm using
Q:can this function func tell me which entry had been changed and point a variable to it like:
now i'm using
frame.bind('<Key>',func)to monitor event,Q:can this function func tell me which entry had been changed and point a variable to it like:
window=tk.Window()
frame=tk.Frame(window)
def func():
pointer={an entry that has been changed}
a=tk.Entry(...)
b=tk.Entry(...)
c=tk.Entry(...)
frame.bind('<Key>',func)Thank you!!!
