Всем привет, я никак не могу понять как передать переменную entryFileName из функции init_twoWind в функцию makeFile
(Знаю что нубовопрос, но я никак не могу понять как это сделать, уже читал похожие ответы)
class twoWind(tk.Toplevel):
def __init__(self):
super().__init__(root)
self.init_twoWind()
def makeFile(self):
print(self.entryFileName)
def init_twoWind(self):
self.title("Make file")
self.geometry("300x200+470+220")
self.resizable(False, False)
fileName = tk.Label(self, text='File name')
fileName.place(x=30, y=50)
self.entryFileName = ttk.Entry(self)
self.entryFileName.place(x=120, y=50)
btn_mkFile = tk.Button(self, text='Create')
btn_mkFile.place(x=110, y=130)
btn_mkFile.bind("<Button-1>", twoWind.makeFile)
btn_cancle = tk.Button(self, text='Cancle', command=self.destroy)
btn_cancle.place(x=190, y=130)
self.grab_set()
self.focus_set()