如何将标签放在左上角?
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()
答案 0 :(得分:1)
如果你只有一个小部件,你可以使用带参数的包或网格:
label.pack(anchor='nw')
或
label.grid(sticky='nw')
如果您想了解如何构建GUI,我可以从Thinking in Tkinter中获得很多
然后,您将始终拥有有用的effbot页面:The Tkinter Pack Geometry Manager和The Tkinter Grid Geometry Manager。