文本设置命令,如何设置文本属性

首页 > 实用技巧 > 作者:YD1662024-01-05 11:54:17

1. 在窗体上添加多行文本框,单行文本框,两个命令按钮

2. 在单行文本框中输入文本,单击一个命令按钮查找该文本并设置格式,单击另一个命令按钮取消格式。

import tkinter as tk #导入tkinter window=tk.Tk() #建立窗口window window.geometry('500x300 400 200') #设定窗口大小(长宽左上)这里的乘是小x def hit1(): t1.tag_config('m',foreground='red',background='blue') find=e1.get() pos1='' pos2='' if find: pos1=t1.search(find,1.0) if pos1: pos2=pos1 ' ' str(len(find)) 'c' t1.tag_add('m',pos1,pos2) def hit2(): t1.tag_delete('m') t1=tk.Text(window,font=('Arial',14)) #建立多行文本框t1 t1.place(x=10,y=10,width=340,height=280) #设置多行文本框t1位置 t1.insert(1.0,'只要愿意学习,就一定能够学会!') #写入内容 e1=tk.Entry(window,font=('Arial',14)) e1.place(x=380,y=110,width=100,height=40) bu1=tk.Button(window,text='设置格式',font=('Arial',10),width=10,height=1,command=hit1) bu1.place(x=380,y=160,width=100,height=40) bu2=tk.Button(window,text='取消格式',font=('Arial',10),width=10,height=1,command=hit2) bu2.place(x=380,y=210,width=100,height=40) window.mainloop()

文本设置命令,如何设置文本属性(1)

字数达到300字才算原创,所以加上几句废话,略过,略过。字数达到300字才算原创,所以加上几句废话,略过,略过。字数达到300字才算原创,所以加上几句废话,略过,略过。字数达到300字才算原创,所以加上几句废话,略过,略过。字数达到300字才算原创,所以加上几句废话,略过,略过。字数达到300字才算原创,所以加上几句废话,略过,略过。字数达到300字才算原创,所以加上几句废话,略过,略过。

栏目热文

文档排行

本站推荐

Copyright © 2018 - 2021 www.yd166.com., All Rights Reserved.