如何从tkinter文本框中获取标记数据,是否有事件发生。 如果我在文本框中标记字段,我可以检索它
答案 0 :(得分:0)
很简单。要获取所选文本,请转到text.selection_get()
。要查看是否选择了任何文本,请
def search():
if text.tag_ranges("sel"):
text_var=text.selection_get()
#do something with the text
else:
pass
root.after(500, search) #equivelant of a while loop