2015-11-14 56 views
0

Tkinter Text小部件允許使用標籤對文本進行樣式設置。Tkinter Text Widget中的字符串中包含的標籤

text.tag_config('red', foreground='red') 
text.insert(END, 'Red text', 'red') 

是否可以在字符串文字中包含標籤?

僞代碼:

text.insert(END, 'This sentence has <red tag>red text</red tag> in it.') 

回答

1

不,這是不可能的。但是,編寫代碼可以很容易地搜索文本小部件中的模式,並用tkinter代碼替換它們。

+0

好的,謝謝。有沒有可以指點我的解決方案? – mcu

+0

@ coding4fun:請參閱http://stackoverflow.com/a/3781773/7432 –

相關問題