我无法'<<Modified>>'
在 tkinter.Text 小部件中禁用事件。为什么 unbind() 在这个例子中不起作用?
from tkinter import *
def on_modify(event):
print('Modified - this should never happen')
root = Tk()
root.bind('<Escape>', lambda e: root.quit())
text = Text(root)
mod_id = text.bind('<<Modified>>', on_modify)
# test - how to temporarily disable Modified event?
text.unbind('<<Modified>>', mod_id)
# text.unbind_all('<<Modified>>')
text.insert(END, 'test')
mod_id = text.bind('<<Modified>>', on_modify)
text.pack()
root.mainloop()