python tkinter でbindの追加と削除を動的に行いたい。
最初にウインドウのbind(<Button-1>)を定義して追加ボタンと削除ボタンで実行される関数を管理したいが、unbindにIDを指定してもすべてのbindが実行されなくなる。
import tkinter as tk root = tk.Tk() root.bind("<Button-1>",lambda e:print(f"R_0")) global id1 ,id2 id1=None id2=None def btn1_call(): global id1 if not id1: id1 = root.bind("<Button-1>",lambda e:print(f"R_1"),"+") print("add-1",id1) tk.Button(root,text="add-1",command=btn1_call).pack() def btn2_call(): global id2 if not id2: print("add-2") id2 = root.bind("<Button-1>",lambda e:print(f"R_2"),"+") tk.Button(root,text="add-2",command=btn2_call).pack() def btn1_call1(): global id1 if id1: print("del-1",id1) root.unbind("<Button-1>",id1) id1=None tk.Button(root,text="del-1",command=btn1_call1).pack() def btn1_call2(): global id2 if id2: print("del-2",id2) root.unbind("<Button-1>",id2) id2=None tk.Button(root,text="del-2",command=btn1_call2).pack() root.mainloop()
Windows 10 Home
python 3.9.5
関係しそうな issue がありました。結構古いのに未だに open のままですが、継続的に修正入っているようです。
https://github.com/python/cpython/issues/75666
なお、私の手元の環境 Windows 11, Python 3.12.7 では、(私には)ちゃんと動いているように思います。
可能ならば、新しい python にバージョンアップして試してみるといいかもしれません。
教えて頂いたサイトにあったコードを加えると私の環境でも意図通りの動作ができました。
#追加部分
def unbind(self, sequence, funcid=None):
"""Unbind for this widget for event SEQUENCE the
function identified with FUNCID."""
bound = ''
if funcid:
self.deletecommand(funcid)
funcs = self.tk.call('bind', self._w, sequence, None).split('\n')
bound = '\n'.join([f for f in funcs if not f.startswith('if {{"[{0}'.format(funcid))])
self.tk.call('bind', self._w, sequence, bound)
tk.Misc.unbind = unbind
意味は全く理解できませんがunbindを書き換えているのですかね?
とりあえずこれを使おうと思いますが、何か問題がありそうなら教えて頂けらばうれしいです。
pythonのバージョンアップで改善するならそれで対応したほうがいいと思います。バージョンアップができないのなら仕方ないですが。
あと、どこにコードを加えたのか書かれていないのですが、pythonの配布物の中のtkinterのコードを直接いじっているのだとすると、venv 等で仮想環境をつくってやるべきかと思います。
ありがとうございます!
あなたの回答
tips
プレビュー