Skip to content Skip to sidebar Skip to footer

Horizontally Oriented Listbox Using Python And Tkinter

I want to provide a listbox where the user can select (multiple) characters (usually close to 15). Quite often some of these will be sequenced, so a listbox is easier than a valida

Solution 1:

No, there is no setting, subclass or theme that will let you do that with a listbox.

What you might want to use instead is a set of check buttons with the indicator turned off so they each appear as a button with a single letter. You can then pack them all horizontally in a frame. With the indicator off, the button will appear sunken when selected, or normal otherwise.


Post a Comment for "Horizontally Oriented Listbox Using Python And Tkinter"