如何更改tkinter中的标签位置?

时间:2018-05-06 13:09:40

标签: python tkinter

如何将标签放在左上角?

from tkinter import *

root = Tk()
root.title('title')
root.resizable(width=False, height=False)
root.geometry('800x500+200+100')
root.configure(background='black')
photo = PhotoImage(file='image.png')
label = Label(root, image=photo)
label.pack()
root.mainloop()

1 个答案:

答案 0 :(得分:1)

如果你只有一个小部件,你可以使用带参数的包或网格:

label.pack(anchor='nw')

label.grid(sticky='nw')

如果您想了解如何构建GUI,我可以从Thinking in Tkinter中获得很多

然后,您将始终拥有有用的effbot页面:The Tkinter Pack Geometry ManagerThe Tkinter Grid Geometry Manager