?Python之tkinter:動態(tài)演示調(diào)用python庫的tkinter帶你進(jìn)入GUI世界(text.insert/link各種事件)
導(dǎo)讀
動態(tài)演示調(diào)用python庫的tkinter帶你進(jìn)入GUI世界(text.insert/link各種事件)
tkinter應(yīng)用案例—text.insert/link各種事件
1、tkinter應(yīng)用案例:利用(line,colum)行列從(1,0)開始
#tkinter應(yīng)用案例:利用(line,colum)行列從(1,0)開始
from tkinter import *
from PIL.ImageTk import PhotoImage
root = Tk()
root.title("Jason niu工作室")
theLabel=tk.Label(root,text="進(jìn)入GUI世界,請開始你的表演!\n點擊下方按鈕即可獲得幣分類")
theLabel.pack()
text=Text(root,width=30,height=5)
text.pack()
text.insert(INSERT,"歡迎進(jìn)入Jason niu工作室\n")
text.tag_add("tag1","1.4","1.13","1.15")
text.tag_add("tag2","1.4","1.13","1.15")
text.tag_config("tag1",background="blue",foreground="yellow")
# text.tag_config("tag2",foreground="black")
mainloop()
2、tkinter應(yīng)用案例:文本框
from tkinter import *
from PIL.ImageTk import PhotoImage
root = Tk()
root.title("Jason niu工作室")
theLabel=tk.Label(root,text="進(jìn)入GUI世界,請開始你的表演!")
theLabel.pack()
text = Text(root,width=30,height=5)
text.pack()
text.tag_config("tag1",background="blue",foreground="yellow")
text.tag_config("tag2",foreground="red")
text.tag_lower("tag2")
text.insert(INSERT,"歡迎進(jìn)入Jason niu工作室\n",("tag2","tag1"))
mainloop()
3、tkinter應(yīng)用案例:給文本框指定的內(nèi)容加入超鏈接
#tkinter應(yīng)用案例:給文本框指定的內(nèi)容加入超鏈接
from tkinter import *
import webbrowser
root = Tk()
root.title("Jason niu工作室")
theLabel=tk.Label(root,text="進(jìn)入GUI世界,請開始你的表演!\n(點擊下邊鏈接即可訪問我們官方網(wǎng)站)")
theLabel.pack()
text = Text(root,width=33,height=5)
text.pack()
text.insert(INSERT,"歡迎訪問Jason niu工作室官方網(wǎng)站")
text.tag_add("link","1.4","1.15")
text.tag_config("link",foreground="blue",underline=True)
def show_arrow_cursor(event):
text.config(cursor="arrow")
def show_xterm_cursor(event):
text.config(cursor="xterm")
def click(event):
webbrowser.open("http://")
text.tag_bind("link","<Enter>",show_arrow_cursor)
text.tag_bind("link","<Leave>",show_xterm_cursor)
text.tag_bind("link","<Button-1>",click)
mainloop()
4、tkinter應(yīng)用案例:通過驗證digest摘要值來判斷文本內(nèi)容是否發(fā)生改變
#tkinter應(yīng)用案例:通過驗證digest摘要值來判斷文本內(nèi)容是否發(fā)生改變
from tkinter import *
import hashlib
root = Tk()
root.title("Jason niu工作室")
theLabel=tk.Label(root,text="進(jìn)入GUI世界,請開始你的表演!\n(點擊下邊鏈接即可訪問我們官方網(wǎng)站)")
theLabel.pack()
text = Text(root,width=33,height=5)
text.pack()
text.insert(INSERT,"歡迎訪問Jason niu工作室官方網(wǎng)站")
contents = text.get("1.0",END)
def getSig(contents):
m = hashlib.md5(contents.encode())
return m.digest()
sig = getSig(contents)
def check():
contents = text.get("1.0",END)
if sig != getSig(contents):
print("警報:內(nèi)容發(fā)生變動!")
else:
print("風(fēng)平浪靜~")
Button(root,text="檢查",command=check).pack()
mainloop()