博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tkinter中text文本与scroll滚动条控件(五)
阅读量:4965 次
发布时间:2019-06-12

本文共 1453 字,大约阅读时间需要 4 分钟。

text与scroll控件

1 import tkinter 2  3 wuya = tkinter.Tk() 4 wuya.title("wuya") 5 wuya.geometry("300x200+10+20") 6 7 # 创建文本框text,设置宽度100,high不是高度,是文本显示的行数设置为3行 8 text = tkinter.Text(wuya, width='30', height='3') 9 text.pack() 10 11 # 设置文本框内容 12 txt = 'China urges the U.S. to abide by the one-China principle and the principles of the three Sino-U.S.' \ 13 ' Joint Communiques, and stop all forms of military contact with Taiwan including arms sales, Wu said.' 14 # 将文本内容插入文本框 15 text.insert('insert',txt) 16 17 18 19 wuya.mainloop()

结果为:

可以观察到内容不太多,显示不下,加个滚动条使显示,可以上下滚动:

1 import tkinter 2  3 wuya = tkinter.Tk() 4 wuya.title("wuya") 5 wuya.geometry("300x50+10+20") 6 7 # 创建滚动条 8 scroll = tkinter.Scrollbar() 9 # 创建文本框text,设置宽度100,high不是高度,是文本显示的行数设置为3行 10 text = tkinter.Text(wuya) 11 # 将滚动条填充 12 scroll.pack(side=tkinter.RIGHT,fill=tkinter.Y) # side是滚动条放置的位置,上下左右。fill是将滚动条沿着y轴填充 13 text.pack(side=tkinter.LEFT,fill=tkinter.Y) # 将文本框填充进wuya窗口的左侧, 14 # 将滚动条与文本框关联 15 scroll.config(command=text.yview) # 将文本框关联到滚动条上,滚动条滑动,文本框跟随滑动 16 text.config(yscrollcommand=scroll.set) # 将滚动条关联到文本框 17 18 # 设置文本框内容 19 txt = 'China urges the U.S. to abide by the one-China principle and the principles of the three Sino-U.S.' \ 20 ' Joint Communiques, and stop all forms of military contact with Taiwan including arms sales, Wu said.' 21 # 将文本内容插入文本框 22 text.insert('insert',txt) 23 24 25 26 wuya.mainloop()

结果如下:

转载于:https://www.cnblogs.com/anita-harbour/p/9315438.html

你可能感兴趣的文章
oss文件删除策略
查看>>
HDU 1058 Humble Numbers(dp)
查看>>
LeetCode 251. Flatten 2D Vector
查看>>
LeetCode Shortest Unsorted Continuous Subarray
查看>>
(转载)Java多线程入门理解
查看>>
用JS打开新窗口,防止被浏览器阻止的方法
查看>>
自我介绍
查看>>
数据库实例练习
查看>>
mybatis中sql片段
查看>>
Ubuntu下安装Android Studio全过程(2015.01.27)
查看>>
ABAP术语-Company Code
查看>>
学习笔记:弧度和角度转换的定义以及转换方法
查看>>
shell中的数值运算
查看>>
23种设计模式之六(工厂模式)
查看>>
HashSet、TreeSet和LinkedHashSet分别基于HashMap、TreeMap和LinkedHashMap
查看>>
maven 添加json-lib包 or自定义jar包
查看>>
linux之ssh服务
查看>>
Xcode工程各个文件夹作用及新建工程参数含意
查看>>
while用法
查看>>
码流识别与传输
查看>>