My question is, how to keep that 'Button' at the verry bottom, while the bottom of treeview frame move up and down when I resize the main window.
CodePudding user response:
You need to:
- make
self.treeto fill all available space by settingfill=tk.BOTH:
self.tree.pack(expand=True, fill=tk.BOTH) # added fill=tk.BOTH
- disable expand of
self.frameBTby removingexpand=True:
self.frameBT.pack(fill=tk.X) # removed expand=True

