selectedfood = tk.StringVar()
foodselectionUI = ttk.Combobox(homeUI, width = 27, textvariable = selectedfood)
foodselectionUI['values'] = ("None", "Nasi Ayam", "Maggi Mee Goreng", "Wan Tan Mee", "Nasi Lemak","Nasi Ayam Tiga Rasa", "Ayam Goreng", "Sushi", "Burger Special","Vega Bao", "Kari Ayam Bao","select food")
foodselectionUI.place(x = 10, y = 125, width = 150)
foodselectionUI.current(11)
this is my code ??
and this picture is my tkinter UI??
may i know how to get my selection
for example if user choose 'sushi' i can get it as my textvariable
i didnt get my output using this way
i get this thing PY_VAR1
question from:
https://stackoverflow.com/questions/66056710/how-to-get-the-value-of-combobox-selected-item-in-python 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…