我想将tkinter按钮向左对齐,但找不到任何帮助。

addButton = Button(root,
                   text="Add Expenses",
                   bg='red',
                   fg='white',
                   command = addButtonDef,
                   font=("Arial narrow",32))
addButton.grid(row=1, column=0)


关于如何对齐的任何解决方案?仅使用网格?

最佳答案

您是否尝试过向西粘贴“ W”的粘性。

addButton.grid(sticky="W", row=1, column=0)


或者,您可以尝试在Button小部件中使用anchor =“ w”。

addButton = Button(root,
                   anchor="w"...)

10-04 13:43