Learn Python tkinter GUI scales easy 🌡️

preview_player
Показать описание
Python Tkinter GUI scale slider tutorial for beginners

#Python #Tkinter #GUI #scale #slider #tutorial #beginners
Рекомендации по теме
Комментарии
Автор

from tkinter import *

def submit():
print("The temperature is: "+ str(scale.get())+ " degrees C")

window = Tk()

hotImage = PhotoImage(file='hot.png')
hotLabel = Label(image=hotImage)
hotLabel.pack()

scale = Scale(window,
from_=100,
to=0,
length=600,
orient=VERTICAL, #orientation of scale
font = ('Consolas', 20),
tickinterval = 10, #adds numeric indicators for value
#showvalue = 0, #hide current value
resolution = 5, #increment of slider
troughcolor = '#69EAFF',
fg = '#FF1C00',
bg =

)
#set current value of slider

scale.pack()

coldImage = PhotoImage(file='cold.png')
coldLabel = Label(image=coldImage)
coldLabel.pack()

button = Button(window, text='submit', command=submit)
button.pack()

window.mainloop()

BroCodez
Автор

great tutorial :) but a question, when you creating a label object why you didn't insert the master "window" ?

tatbysaeed
Автор

Hey Bro of codes 🙂
first of all thank you for your great content👌
As a newbie in the python world could you please give me a tip how to use the generated number values in a function to setup the brightness of a RGB-LCD.
Many thanks in advance 🍻
Cheers

Wideopen
Автор

just curious: Why have you stopped using f strings this late in the tutorials?? 😵‍💫 did we go back in time or something?

DJL
Автор

another perfect tutorial!! thanks as always :)

piotrkopcewicz
Автор

i couldnt add the images properly, there is a huge space between the images and the scale isk how to fix that :(

hamzazad
Автор

Hello Brocode, How can i resize the image fire and snowflakes? mine is so big

ba.youtube
Автор

I CANT FIND THE SCALE OPTION IN MY PYCHARM WHY ??

hanihafnaoui
Автор

I'd like to make an 8 channel mixing board. How would I install more slide bars? Is there a separate command for that, or would I just reiterate something like in the video? Thx

mikemurphy
Автор

so i was lazy copy the code and remplece the hot and cold img for the pizza and hotdog XD

orfredymelobeltran
Автор

Lol you didn't explain resolution, you edit skipped it 😂

pet.me