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

后端 未结 3 760
醉梦人生
醉梦人生 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:03

    You can use "ipadx" and "ipady" while packing the "Entry" widget.

    You can also use it with "grid".

    import tkinter as tk
    
    root = tk.Tk
    
    e = tk.Entry()
    e.pack(ipadx=100, ipady=15)
    
    tk.mainloop()
    
    

提交回复
热议问题