I am working on Tkinter
and I am new. I am making a GUI which has three frames. I am using an entry widget in the first frame. I want to ge the text entered in the entry widget to get into the second frame. I want to ge the text entered in txt widget in A
to vno
in B
How to get string entered by user in text box widget in one class to a variable in second class?
import tkinter
classA(tk.Frame)
....
txt = tk.Entry
.....
classB(tk.Frame)
....
vno = txt.get()
....