您可能要使用
insert方法。您可以在此处找到Tkinter Entry
Widget的文档。
该脚本将文本插入
Entry。可以
command在按钮的参数中更改插入的文本。
from tkinter import *def set_text(text): e.delete(0,END) e.insert(0,text) returnwin = Tk()e = Entry(win,width=10)e.pack()b1 = Button(win,text="animal",command=lambda:set_text("animal"))b1.pack()b2 = Button(win,text="plant",command=lambda:set_text("plant"))b2.pack()win.mainloop()
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)