Tkinter-Text控制元件常用功能示例
簡介及簡例
Text 控制元件用來顯示多行文字. Tkinter 的 Text 控制元件很強大, 很靈活, 可以實現很多功能. 雖然這個控制元件的主要用途是顯示多行文字, 但其還可以被用作簡單的文字編輯器, 甚至是網頁瀏覽器.
Text 控制元件可以顯示網頁連結, 圖片, HTML頁面, 甚至 CSS 樣式表.
在其他的各種教程中, 很難找到一個關於 Text 控制元件的簡單例子. 這也是我們寫這一章教程的主要目的:
我們使用構造方法建立了一個 Text 控制元件, 設定其高度為 2 (不是畫素高度, 而是兩行字元的高度), 設定其寬度為 30 (不是畫素寬度, 是30個字元的寬度), 然後使用 insert()
from Tkinter import *
root = Tk()
T = Text(root, height=2, width=30)
T.pack()
T.insert(END, "Just a text Widget\nin two lines\n")
mainloop()
執行後窗口的樣子很可愛:
讓我們對上面的例子做一點小小的改動. 我們加入了另一段文字, 哈姆雷特那段著名的開場白:
from Tkinter import * root = Tk() T = Text(root, height=2, width=30) T.pack() quote = """HAMLET: To be, or not to be--that is the question: Whether 'tis nobler in the mind to suffer The slings and arrows of outrageous fortune Or to take arms against a sea of troubles And by opposing end them. To die, to sleep-- No more--and by a sleep to say we end The heartache, and the thousand natural shocks That flesh is heir to. 'Tis a consummation Devoutly to be wished.""" T.insert(END, quote) mainloop()
執行上面的例子後, 產生的視窗並不好看. 在視窗中我們只能看到這段獨白的第一行, 並且還被斷為兩行. 視窗只顯示兩行文字, 是因為我們將 Text 控制元件高度設定為 2 行文字. 文字自動斷行, 是因為我們將 Text 控制元件寬度設定為 30 個字元.
這個問題的一個解決辦法是, 將 Text 控制元件的高度設定為這段文字的行數, 將 Text 控制元件的寬度設定為這段文字中最長的那行的字元數.
但更好的解決辦法是設定滾動, 就像我們常用的瀏覽器等應用中那樣.
滾動條
現在讓我們來為我們的應用加入一個滾動條. Tkinter 提供了 Scrollbar()
from Tkinter import *
root = Tk()
S = Scrollbar(root)
T = Text(root, height=4, width=50)
S.pack(side=RIGHT, fill=Y)
T.pack(side=LEFT, fill=Y)
S.config(command=T.yview)
T.config(yscrollcommand=S.set)
quote = """HAMLET: To be, or not to be--that is the question:
Whether 'tis nobler in the mind to suffer
The slings and arrows of outrageous fortune
Or to take arms against a sea of troubles
And by opposing end them. To die, to sleep--
No more--and by a sleep to say we end
The heartache, and the thousand natural shocks
That flesh is heir to. 'Tis a consummation
Devoutly to be wished."""
T.insert(END, quote)
mainloop( )
現在這個視窗看起來順眼多了, 視口中總是顯示4行文字, 但所有行都可以通過拖動滾動條看到:
加入圖片
下面的例子中, 我們在一個 Text 控制元件中顯示了一張圖片, 併為另一個單行的 Text 控制元件綁定了一個點選事件:
from Tkinter import *
root = Tk()
text1 = Text(root, height=20, width=30)
photo=PhotoImage(file='./William_Shakespeare.gif')
text1.insert(END,'\n')
text1.image_create(END, image=photo)
text1.pack(side=LEFT)
text2 = Text(root, height=20, width=50)
scroll = Scrollbar(root, command=text2.yview)
text2.configure(yscrollcommand=scroll.set)
text2.tag_configure('bold_italics', font=('Arial', 12, 'bold', 'italic'))
text2.tag_configure('big', font=('Verdana', 20, 'bold'))
text2.tag_configure('color', foreground='#476042',
font=('Tempus Sans ITC', 12, 'bold'))
text2.tag_bind('follow', '<1>', lambda e, t=text2: t.insert(END, "Not now, maybe later!"))
text2.insert(END,'\nWilliam Shakespeare\n', 'big')
quote = """
To be, or not to be that is the question:
Whether 'tis Nobler in the mind to suffer
The Slings and Arrows of outrageous Fortune,
Or to take Arms against a Sea of troubles,
"""
text2.insert(END, quote, 'color')
text2.insert(END, 'follow-up\n', 'follow')
text2.pack(side=LEFT)
scroll.pack(side=RIGHT, fill=Y)
root.mainloop()