tkinter.Text富文本框里插入图片 | Pic1=tkinter.PhotoImage(file="konglong.png") | text1.image_create(tkinter.END,image=Pic1)
# -*- coding: utf-8 -*-
import tkinter
root=tkinter.Tk()
# 如果需要text控件支持“后悔药”,支持“删除或者修改”后的撤销还原操作,需要加上 属性 undo=True
text1=tkinter.Text(root,width=50,height=30,undo=True)
text1.pack()
##############################################
text1.insert(tkinter.INSERT,"我很爱python编程!编程改变世界!i love Python!")
Pic1=tkinter.PhotoImage(file="konglong.png")
##############################################
def ClickMe():
print("我被点了!")
# 点击按钮以后插入图片
text1.image_create(tkinter.END,image=Pic1)
# 这个按钮的父窗口就不能写root了,要写多文本框的名字
B1=tkinter.Button(text1,text="点我点我",command=ClickMe)
text1.window_create(tkinter.INSERT,window=B1)
##############################################
root.mainloop()