有没有办法不在 tkinter.xml 中选择空白文本。
这是代码:
from tkinter import *
root = Tk()
text = Text(root , width = 65 , height = 20 , font = "consolas 14")
text.pack()
text.insert('1.0' , "This is the first line.\n\nThis is the third line.\n\nThis is the fifth line.")
mainloop()
在这里,当我选择几行时,每行末尾的空白文本也会被选中。
我希望空白文本不应该被选中。
有没有办法在 tkinter 中实现这一点?
如果有人可以帮助我,那就太好了。