Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Tkinter エントリ ウィジェットのwidth引数がピクセル単位ではなく文字単位であることに気付きました。
幅をピクセル単位で調整することはできますか?
Place Geometry Manager を使用することもできます。
entry.place(x=10, y=10, width=100) #width in pixels
'-width' オプションを使用して幅をピクセル単位で指定することはできませんが、同じことを行う方法はいくつかあります。たとえば、境界線のないフレームにエントリをパックし、そのフレームでジオメトリの伝播をオフにしてから、フレームの幅をピクセル単位で設定できます。