Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

scrollbar tkinter

from tkinter import * # Import tkinter

root = Tk() # init the root window
scrollbar = Scrollbar(root) # assign the scrollbar to the root window
scrollbar.pack( side = RIGHT, fill = Y ) # put the scrollbar on the left side

mainloop() # the main loop
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #scrollbar #tkinter
ADD COMMENT
Topic
Name
4+4 =