Tkinter的Text组件
程序员文章站
2022-05-17 09:02:29
Text: 文本控件;用于显示多行文本一、基本使用1、插入文字、组件、图片插入内容如下:代码1如下:# coding:utf8from tkinter import *""" 1.text插入组件;2.text插入图片;"""class App: def __init__(self, master)... ......
text: 文本控件;用于显示多行文本
一、基本使用
1、插入文字、组件、图片
插入内容如下:
代码1如下:
# coding:utf8 from tkinter import * """ 1.text插入组件;2.text插入图片;""" class app: def __init__(self, master): photo = photoimage(file='456.png') # text组件 frame = frame(master).pack(padx=5, pady=5) text = text(frame, width=100, height=30) text.pack() # 插入数据 文档、图片、组件 text.insert(insert, "插入开头\n") text.insert(end, "插入结尾") # 插入图片 def show(): text.image_create(end, image=photo) b = button(text, text='插入图片', command=show) text.window_create(insert, window=b) root = tk() win = app(root) root.mainloop()
2、读取文本内容
代码2如下:
# coding:utf8 from tkinter import * """ 1.text插入组件;2.text插入图片;""" class app: def __init__(self, master): photo = photoimage(file='456.png') # text组件 frame = frame(master).pack(padx=5, pady=5) label(frame, text="请在文本框输入您的内容").pack() text = text(frame, width=100, height=30) text.pack() # 使用get获取text的内容 def printt1(): print("您输入的内容是:", text.get("0.0", end)) button(frame, text="点击打印您输入的内容", command=printt1).pack() root = tk() win = app(root) root.mainloop()
效果如下:
读书和健身总有一个在路上
上一篇: 古代太子的处境是什么样的?太子之位常被废但顺利继位
下一篇: Python学习笔记:异常处理
推荐阅读
-
mysql索引类型normal,unique,full text的区别
-
Vue2.0实现组件数据的双向绑定问题
-
vue自定义日期组件的实现
-
PHP调用VC编写的COM组件实例_PHP
-
可以使text显示为label的样式吗_html/css_WEB-ITnose
-
C#/.NET/.NET Core定时任务调度的方法或者组件有哪些--Timer,FluentScheduler还是...
-
Python编写的com组件发生R6034错误的原因与解决办法
-
LotusPhp笔记之:Logger组件的使用方法
-
小程序自定义组件——创建和使用自定义组件步骤 & 自定义组件属性properties数据列表、data数据、methods方法的用法
-
yii2组件之多图上传插件FileInput的详细使用,yii2fileinput