How to keep a widget visible while resizing/shrinking the tkinter app window
问题 I have this text box on the bottom of my app, and I need it to stay there no matter what (much like a sticky positioning in css). But as I resize the window, the textbox kinda gets hidden by the Frame on top(that consists of another textbox and a scrollbar) top=Frame(self.root) top.pack(side=TOP, fill=BOTH, expand=True) text1=Text(top) text1.pack(side=LEFT, fill=BOTH, expand=True) scroll=Scrollbar(top) scroll.pack(side=RIGHT, fill=Y) scroll.config(command=text1.yview) text1.config