How to make a OptionMenu maintain the same width?

Question:

I have a snippet which creates an OptionMenu widget.

...
options = ('White', 'Grey', 'Black', 'Red', 'Orange', 
           'Yellow', 'Green', 'Blue', 'Cyan', 'Purple')
var = StringVar()
optionmenu = OptionMenu(par, var, *options)
optionmenu.grid(column=column, row=row)
...

One problem I’ve encountered is every time a new option is selected, the width of the widget changes. I believe this is due to the text within the widget changing widths. How do I make the widget hold a consistent width?

Asked By: rectangletangle

||

Answers:

When you use the grid command to place the widget in its parent, have the widget fill its cell (try sticky="ew")

Answered By: Bryan Oakley

To the best of my knowledge, you can use optionmenu.config(width=<YOUR_WIDTH>) as follows:

...
optionmenu = OptionMenu(par, var, *options)
optionmenu.config(width=<YOUR_WIDTH>)
optionmenu.grid(column=column, row=row)
...
Answered By: Symon
optionmenu.configure(width=<YOUR_WIDTH_HERE>)
Answered By: user2155059

I’m in the exact same boat as the OP was 12 years ago – placing dropdowns in a frame, only to discover that no solution exists for setting them to expand horizontally and fill that frame. As a result they’re always resizing (and re-centering) any time a different-length option is selected. sticky=” has no effect whatsoever. width=” works, but now you’re setting a fixed width that is only optimized for one resolution.

Of course the terrible solution is to use a monospace font and add spaces to the end of all the options in the dropdown. I just don’t understand how there can be no real solution for this. These dropdowns look absolutely atrocious as a result.

Answered By: Nathan
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.