似乎语句: MyText.mark_set(INSERT, 'new index')
修改 Text .insert() 方法的插入位置,而不是在键盘上键入的文本的插入位置。
换句话说,有没有办法使用 .insert() 方法插入相当于 CTRL-END 键
from tkinter import *
def curseur(bidon):
mytext.mark_set(INSERT, END)
root = Tk()
mytext = Text(root)
mytext.pack()
mytext.insert(INSERT, "Clic in other window, then clic back here (line one)\n")
mytext.insert(INSERT, "Type something on the keyboard\n")
mytext.insert(INSERT, "The typed text must go to the end of the widget\n")
mytext.bind("<FocusIn>", curseur)
root.mainloop()
谢谢,