tkinter组件的place布局,相对坐标,相对居中 → button_1.place(relx=0.5,rely=0.5,anchor=tkinter.CENTER)
# -*- coding:utf-8 -*-
import tkinter
root=tkinter.Tk()
# —————— 分割线 —————— #
photo_1=tkinter.PhotoImage(file="konglong.gif")
label_1=tkinter.Label(root,image=photo_1)
label_1.pack()
# —————— 分割线 —————— #
def ClickMe():
print("居中!点击我!")
button_1=tkinter.Button(root,text="点我",command=ClickMe)
button_1.place(relx=0.5,rely=0.5,anchor=tkinter.CENTER)
# —————— 分割线 —————— #
root.mainloop()