失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > python为text添加滚动条_Python GUI编程(Tkinter)7 带滚动条的Text

python为text添加滚动条_Python GUI编程(Tkinter)7 带滚动条的Text

时间:2019-09-20 20:56:12

相关推荐

python为text添加滚动条_Python GUI编程(Tkinter)7 带滚动条的Text

import tkinter

#创建主窗口

win = tkinter.Tk()

#设置标题

win.title("sunck")

#设置大小和位置

#win.geometry("400x400+200+20")

'''

文本控件,用于显示多行文本

'''

#创建滚动条

scroll = tkinter.Scrollbar()

text = tkinter.Text(win, width=50, height=8)

#side放到窗体的那一侧 fill填充

scroll.pack(side=tkinter.RIGHT, fill=tkinter.Y)

text.pack(side=tkinter.LEFT, fill=tkinter.Y)

#关联

scroll.config(command=text.yview)

text.config(yscrollcommand=scroll.set)

str = '''If there is anyone out there who still doubts that America is a place where all things are possible, who still wonders if the dream of our founders is alive in our time, who still questions the power of our democracy, tonight is your answerIt’s the answer told by lines that stretched around schools and churches in numbers this nation has never seen, by people who waited three hours and four hours, many for the first time in their lives, because they believed that this time must be different, that their voices could be that difference.'''

text.insert(tkinter.INSERT, str)

win.mainloop()

如果觉得《python为text添加滚动条_Python GUI编程(Tkinter)7 带滚动条的Text》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。