in This video, you'll learn how we can create combobox in Python Tkinter.
To create a combobox in tkinter we have to import ttk.
example -
from tkinter import *
from tkinter.ttk import Combobox
root = Tk()
v = ["hello","hi"]
combo = Combobox(root, values=v, width=15)
combo.set("select")
combo.pack()
root.geometry("300x300+120+120")
root.mainloop()
------------------------------------------------------------------
I'm sure your queries like -
How to create combobox in tkinter?
How to create Choicebox in tkinter?
How to set width of choicebox in tkinter?
how to set height of choicebox in tkinter?
how to insert value in choice box in tkinter?
have been solved.
If you have any problem related to this video then please comment below. Thanks
In questa pagina del sito puoi guardare il video online Python GUI Tutorial - 28 - Combobox - part 1 della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Indrajeet Singh 26 luglio 2018, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 18,221 volte e gli è piaciuto 135 spettatori. Buona visione!