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 中学习 Grid Manager。我还不能理解的一个概念是行和列的大小。例如,如果我想在左侧输入一个输入框,那么我的列值应该是多少。我试图用谷歌搜索它,但我还没有理解它。任何人都可以向我解释或给我任何链接,以帮助我更好地理解它。
问候, 图沙尔
行或列的大小将自动成为该行中最大对象的大小,除非您columnspan在grid()。
columnspan
grid()
你提到你希望它在左边,然后你需要给出grid()一个sticky论点。
sticky
button.grid(row=0, column=0, sticky=W)
阅读更多