I don't have ads on this website.
Donations help keep this site going.

If you find tkinter-snippets.com useful, please donate any amount you feel comfortable with.
Visit https://ko-fi.com/jobinpy to donate. Thank you!

ttk.Combobox – Clear values drop-down

img

To clear the values in the drop-down menu of a ttk.Combobox, set values to an empty tuple.

1
my_combobox.configure(values=())

img

Now the combobox values drop-down menu is empty.