Tkinter window in canvas doesn't fill its parent in height
问题 I would like to have my scrollbar in the bottom of the frame and my text widgets filling the whole frame above the scrollbar. I found some solution about the width configuration here but when I try to replace width with height, it does not work correctly. from tkinter import * from tkinter import ttk class MainView(Frame): def FrameHeight(self, event): canvas_height = event.height self.canvas.itemconfig(self.canvas_frame, height=canvas_height) def OnFrameConfigure(self, event): self.canvas