菜鸟IT的博客 >> Python
tkinter.Text插入控件组件 | 比如插入按钮 | B1=tkinter.Button(text1,text="点我点我",command=ClickMe) | text1.window_create(tkinter.INSERT,window=B1)
# -*- coding: utf-8 -*-
import tkinter
root=tkinter.Tk()
# 如果需要text控件支持“后悔药”,支持“删除或者修改”后的撤销还原操作,需要加上 属性 undo=True
text1=tkinter.Text(root,width=30,height=5,undo=True)
text1.pack()
##############################################
text1.insert(tkinter.INSERT,"我很爱python编程!编程改变世界!i love Python!")
##############################################
def ClickMe():
print("我被点了!")
# 这个按钮的父窗口就不能写root了,要写多文本框的名字
B1=tkinter.Button(text1,text="点我点我",command=ClickMe)
text1.window_create(tkinter.INSERT,window=B1)
##############################################
root.mainloop()
菜鸟IT博客[2022.03.05-12:28] 访问:275