bmello
bmello

Reputation: 1984

How to allow more than one selection in tkinter OptionMenu?

OptionMenu is working perfectly in my application to select one option among several possible. However, I need to allow the user to select more than one option. Is it possible?

Upvotes: 2

Views: 320

Answers (1)

Bryan Oakley
Bryan Oakley

Reputation: 385980

It's not designed for that. If you want that sort of behavior you can create your own widget. An optionmenu is just a menubtton and a menu, and a tiny bit of code.

Upvotes: 2

Related Questions