Python GUI Tutorial - 28 - Combobox - part 1

preview_player
Показать описание
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 *

root = Tk()

v = ["hello","hi"]
combo = Combobox(root, values=v, width=15)

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

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
Рекомендации по теме
Комментарии
Автор

tank you so mach,
Although I don't speak English I could understand you, you saved my life broth.

christhiangutierrezrosas
Автор

how to link a whole list into ac combobox ? example- Materials[ ] which has more than 100 different materials in it and we want to add all the elements of that list into the combobox

farazalikhan
Автор

Sir 10 take value to at I hai but scroll Barr nahi atta hai kya karu

jitendravasava
Автор

How do I add Text to the window as a whole?

AB-mopg