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.
有没有办法在使用 place() 几何管理器时向标签添加内部填充?
我试过 ipadx选项不存在...
Label(text = "Something", bg = "blue").place(x = 0, y = 0)
你可以这样做:
l = Label(text = "Something", bg = "blue") l.pack(ipadx = 1) # change 1 to whichever value you want