при изменении размеров окна, текстбокс который внутри не меняет размеры, как сделать чтобы был всё время по размеру родительского окна?
https://ibb.co/cHZgPG
import tkinter as tk class Application(tk.Frame): def __init__(self, master=None): tk.Frame.__init__(self, master) self.pack() self.createWidgets() def createWidgets(self): panelFrame = tk.Frame(self, height=60, bg='gray') textFrame = tk.Frame(self, height=340, width=600) panelFrame.pack(side='top', fill='x', expand=True) textFrame.pack(side='bottom', fill='both', expand=True) textbox = tk.Text(textFrame, font='Arial 14', wrap='word') scrollbar = tk.Scrollbar(textFrame) scrollbar['command'] = textbox.yview textbox['yscrollcommand'] = scrollbar.set textbox.pack(side='left', fill='both', expand=True) scrollbar.pack(side='right', fill='y') self.saveBtn = tk.Button(self) self.saveBtn["text"] = "Сохранить в файл XML" self.saveBtn["command"] = self.say_hi self.saveBtn.pack(side="top") self.saveBtn.place(x=10, y=10, width=140, height=40) self.QUIT = tk.Button(self, text="ВЫХОД", fg="red", command=root.destroy) self.QUIT.place(x=155, y=10, width=60, height=40) root = tk.Tk() app = Application(master=root) app.mainloop()