小甲鱼的铁粉 发表于 2020-7-27 20:52:33

tkinter的设置text文本的可撤销代码

里面这个'<Key>'是干嘛的{:10_250:}

from tkinter import *

root = Tk()

text = Text(root, width=30, height=5, autoseparators=False, undo=True, maxundo=10)
text.pack()

text.insert(INSERT, "I love you!")
def callback(event):
    text.edit_separator()
text.bind('<Key>', callback)
def show():
    try:
      text.edit_undo()
    except:
      print("不能再撤销了")
Button(root,text="撤销", command=show).pack()
mainloop()

qiuyouzhi 发表于 2020-7-27 20:54:41

好好学学bind的用法吧

小甲鱼的铁粉 发表于 2020-7-27 20:56:01

qiuyouzhi 发表于 2020-7-27 20:54
好好学学bind的用法吧

我知道bind是设置热键的这个key是啥

Hello. 发表于 2020-7-27 21:05:25

键盘按下事件:<Key>

小甲鱼的铁粉 发表于 2020-7-27 21:07:44

Hello. 发表于 2020-7-27 21:05
键盘按下事件:

奥,明白了,每输入一个字符,它就会触发callback函数去添加分隔符?

Hello. 发表于 2020-7-27 21:08:36

小甲鱼的铁粉 发表于 2020-7-27 21:07
奥,明白了,每输入一个字符,它就会触发callback函数去添加分隔符?

{:7_142:}
页: [1]
查看完整版本: tkinter的设置text文本的可撤销代码