How to pass Tkinter entry value from one frame to another through my switch frame function
问题 My Tkinter application have added Notebook and inside the notebook I want to switch the frame using a button. Implemented notebook switch and frame switch. i want to take entry input from one frame of notebook to another frame when I click 'okay' button enter code here I tried to pass the value as argument for frame class initialization assign the entry filed value to a global variable In Frame : class Tab1_Frame1 want to pass value from self.uidentry = Entry(self, bd=5) to class Tab1_Frame2