Python GUI Tutorial - 37 - Slider or Scale

Pubblicato il: 06 agosto 2018
sul canale di: 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


In questa pagina del sito puoi guardare il video online Python GUI Tutorial - 37 - Slider or Scale della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Indrajeet Singh 06 agosto 2018, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 4,627 volte e gli è piaciuto 35 spettatori. Buona visione!