How do I set the width of an Tkinter Entry widget in pixels?

后端 未结 3 789
醉梦人生
醉梦人生 2021-01-12 04:51

I noticed that the width argument for the Tkinter entry widget is in characters, not pixels.

Is it possible to adjust the width in pixels?

3条回答
  •  粉色の甜心
    2021-01-12 05:05

    You cannot specify the worth in pixels using the '-width' option, but there are ways to accomplish the same thing. For example, you could pack an entry in a frame that has mo border, turn off geometry propagation, then set the width of the frame in pixels.

提交回复
热议问题