Python GUI Tutorial - 37 - Slider or Scale

Publicado em: 06 Agosto 2018
no 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


Nesta página do site você pode assistir ao vídeo on-line Python GUI Tutorial - 37 - Slider or Scale duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário Indrajeet Singh 06 Agosto 2018, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 4,627 vezes e gostou 35 espectadores. Boa visualização!