Python GUI Tutorial - 39 - Spinbox | TKinter

Pubblicato il: 09 agosto 2018
sul canale di: Indrajeet Singh
5,472
56

In this video, you'll learn how we can add spinbox into our Tkinter Application.
Spinbox box is nothing just a Textbox containing an up and down arrows so we can increase or decrease the number inside the text box.

so here is the code used in this video-


from tkinter import *
def click_me():
print(spin1.get())


root = Tk()
spin1 = Spinbox(root, from_=1, to=5)
spin1.pack()

button =Button(root, text="prnt", command=click_me)
button.pack()
root.geometry("300x300")
root.mainloop()

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

if you have any problem related with this video "how to add spinbox in tkinter" then please comment in commentbox.


In questa pagina del sito puoi guardare il video online Python GUI Tutorial - 39 - Spinbox | TKinter della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Indrajeet Singh 09 agosto 2018, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 5,472 volte e gli è piaciuto 56 spettatori. Buona visione!