Skip to content

ScrolledFrame

py
from tkinterplus import ScrolledFrame
import tkinter

root = tkinter.Tk()
root.title("ScrolledFrame")
root.minsize(500, 500)

widget = ScrolledFrame(root)

for i in range(100):
    tkinter.Label(widget, text="Label" + str(i)).pack()
widget.pack(expand=True, fill="both")

root.mainloop()

Not associated with or approved by Mojang Studios or Microsoft