text.pack()#设置 tagtext.tag_config("tag_1", backgroun="yellow", foreground="red")#"insert" 索引表示插入光标当前的位置text.insert("insert","I love") text.insert("end","FishC.com!","tag_1") root.mainloop() 在Text 组件中插入对象,可以使用 window_create() 和 image_create() 方法: ...
1fromtkinterimport*23root =Tk()4text = Text(root,width=20,height=15)5text.pack()6defshow():7text.insert(INSERT,"i love python")8print(text.get("1.2", 1.6))9b1 = Button(text,text="点我",command=show)10text.window_create(INSERT,window=b1) 执行结果: 2. “line.end” 行号加上字...
b1 = Button(text,text='唱吧',command=show).place(x=0,y=0) def show1(): text.image_create(END,image=photo) b2 = Button(text,text='看吧',command=show1).place(x=0,y=35) text.window_create(INSERT,window=b1) text.window_create(END,window=b2) mainloop() 1. 2. 3. 4. 5. 6....
#在Text控件内插入- -段文字 ,INSERT表示在光标处插入,END表示在末尾处插入 text.insert (INSERT, "在拜仁,你甚至可以踢球") # 跳下一行 text.insert (INSERT, "\n\n") #在Text控件内插入- -个按钮 button = Button(text, text="关闭",command=win.quit) text. window_create (END, window=button) ...
button = Button(text, text="关闭",command=win.quit) text. window_create (END, window=button) # 填充水平和垂直方向,这里设置 expand为 True 否则不能垂直方向延展 text .pack (fill=BOTH,expand=True) # 在第一行文字的第0个字符到第6个字符处插入标签,标签名称为"name" ...
self.createwedget() def createwedget(self): # class Label(Widget): # """Label widget which can display text and bitmaps.""" # # def __init__(self, master=None, cnf={}, **kw): # STANDARD OPTIONS # activebackground, activeforeground, anchor, ...
今天我们试着学习在Text中增加文本、组件、图片;顺便还学习使用Webbrowser打开网页; 1、insert 增加; 2、get 获得; 3、image_create,可以创建图像出来; 4、window_create 增加组件 5、Text.delete ,可以删除多行内容 。 6、Text.tag_add(“good”,1.0,1.9) ...
text.insert("insert", "林四儿最帅\n") b1 = Button(text, text="点我") b1.pack() text.window_create("insert", window=b1) root.mainloop() 图5.3 文本框中插入按钮 删除刚才创建的按钮: text.delete(b1) Text控件的方法要比Entry丰富得多,也更加灵活,这里我们就只介绍一些十分常用的,如果你有兴...
t.window_create('2.0', window=bt) # 没有调用pack() # bt.pack() t.pack() root.mainloop() # 注意:使用window_create,而不是使用insert('2.0',bt);pack()也不用调用; # 点击这个按钮,打印出'button in text',证明这个按钮是可以正常工作的。 [python] view plain copy '''16.在Te...
如果不通过rowkey来查找数据,就必须逐行地比较每一列的值,即全表扫瞄。对于较大的表,全表扫描的代价...