Is there a way to disable the resize of a ttk Button? So that I can maximaze the text inside the button.
I tried to set the size of the buttons with config(width, height) which didn't work, so I used ipadx and ipady. But the button size is not fixed permanently and changes when the text size is changed.
One of the way is to put the
ttk.Button
inside a frame with specifiedwidth
andheight
in pixels and make the button to fill the frame:Output: