【发布时间】:2020-03-11 16:45:51
【问题描述】:
我想将我的 tkinter 按钮向左对齐,但找不到任何帮助。
addButton = Button(root,
text="Add Expenses",
bg='red',
fg='white',
command = addButtonDef,
font=("Arial narrow",32))
addButton.grid(row=1, column=0)
关于如何对齐它的任何解决方案?只使用网格?
【问题讨论】:
标签: python python-3.x tkinter