Use Scale : Scale : GUI Tk PYTHON examples


PYTHON examples » GUI Tk » Scale »

 

Use Scale



from Tkinter import *
import string


root = Tk()
root.title('Scale')

scale = Scale(root, 
              orient=VERTICAL, 
              length=284
              from_=0
              to=250,
              tickinterval=50)
              
scale.grid(row=0, column=0, sticky='NE')

scale.set(100)

root.mainloop()

           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo GUI Tk
» Scale