Python GUI Tutorial - 37 - Slider or Scale

Publicado el: 06 agosto 2018
en el canal de: Indrajeet Singh
4,627
35

in this video, you'll learn how we can add a slider also known as Scale in our tkinter application.

code used in the video -

from tkinter import *


root = Tk()

s = Scale(root, from_ = 0, to=100, orient=HORIZONTAL, length=200, width=10, sliderlength=50)
s.set(50)
s.pack()



root.geometry("300x300")
root.mainloop()


---------------------------------------------------------------



i am sure your queries like -

how to add a slider in tkinter?
how to display a scale in tkinter?
how to get value of slider in tkinter?
how to set value of slider in tkinter?
how to set volume slider in tkinter?

have been solved.

if you have any problem related with this then please let us know in comment box.


contact us-
facebook -   / programmingcage  
email - techgramacademy@gmail.com


En esta página del sitio puede ver el video en línea Python GUI Tutorial - 37 - Slider or Scale de Duración hora minuto segunda en buena calidad , que subió el usuario Indrajeet Singh 06 agosto 2018, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 4,627 veces y le gustó 35 a los espectadores. Disfruta viendo!