🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

ScrollableFrame

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ScrollableFrame

Your tkinter ScrollableFrame

0.0.4
PyPI
Maintainers
1

ScrollableFrame

Your tkinter ScrollableFrame

from tkinter import *
from ScrollableFrame import *

root = Tk()
# It's no different from tkinter's Frame,
# orient(The orient of scroolbar): 0 -> VERTICAL, 1->HORIZONTAL, 2->both
sf = ScrollableFrame(root, orient = 2 , height=180, width=360) # :-)
Label(sf.frame, text=("(^_^)"*20+'\n')*20).pack()
sf.pack()
root.mainloop()

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts