
stackoverflow.com
https://stackoverflow.com/questions/16188420/tkint…
python - Tkinter scrollbar for frame - Stack Overflow
vsb = tk.Scrollbar(root, orient="vertical", command=canvas.yview) canvas.configure(yscrollcommand=vsb.set) vsb.pack(side="right", fill="y") canvas.pack(fill="both", expand=1, anchor="nw") #canvas size is relative to window size. wrapFrame = canvas.create_window((0,0), window=frame, anchor="nw") # When the window size change, it will call this ...