내장 바인딩 후 Tkinter 텍스트 위젯의 사용자 정의 이벤트 바인딩
문제 이해
Tkinter의 텍스트 위젯에서는 위젯의 내장 바인딩보다 먼저 사용자 정의 이벤트 바인딩이 실행되어 텍스트 업데이트에 불일치가 발생하는 상황이 발생할 수 있습니다.
해결책
이 문제를 해결하려면 이벤트가 처리되는 순서를 변경할 수 있습니다. Tkinter 위젯에는 바인딩 실행 순서를 결정하는 "bindtags" 계층이 할당됩니다.
1. 바인딩태그 재정렬
바인드태그의 기본 순서는 위젯, 클래스, 최상위, 모두입니다. 클래스 바인딩태그 뒤에 위젯 바인딩태그를 배치하여 순서를 변경할 수 있습니다. 이렇게 하면 클래스 바인딩이 위젯 바인딩보다 먼저 실행됩니다.
<code class="python"># Modify the bindtags to rearrange the order entry.bindtags(('Entry', '.entry', '.', 'all'))</code>
2. 추가 바인딩 태그 소개
또는 클래스 바인딩 태그 뒤에 새 바인딩 태그를 만들고 사용자 정의 이벤트를 이 새 태그에 바인딩할 수 있습니다.
<code class="python"># Create a new bindtag "post-class-bindings" after the class bindtag entry.bindtags(('.entry','Entry','post-class-bindings', '.', 'all')) # Bind your custom events to "post-class-bindings" entry.bind_class("post-class-bindings", "<KeyPress>", OnKeyPress)</code>
두 접근 방식의 이점
예제 코드
다음 코드는 두 가지 접근 방식을 모두 보여줍니다.
<code class="python">import Tkinter def OnKeyPress(event): value = event.widget.get() string="value of %s is '%s'" % (event.widget._name, value) status.configure(text=string) root = Tkinter.Tk() entry1 = Tkinter.Entry(root, name="entry1") entry2 = Tkinter.Entry(root, name="entry2") entry3 = Tkinter.Entry(root, name="entry3") # Three different bindtags entry1.bindtags(('.entry1', 'Entry', '.', 'all')) entry2.bindtags(('Entry', '.entry2', '.', 'all')) entry3.bindtags(('.entry3','Entry','post-class-bindings', '.', 'all')) # Bind the first two entries to the default bind tags entry1.bind("<KeyPress>", OnKeyPress) entry2.bind("<KeyPress>", OnKeyPress) # Bind the third entry to the "post-class-bindings" bind tag entry3.bind_class("post-class-bindings", "<KeyPress>", OnKeyPress) # ... Continue with your GUI code </code>
위 내용은 내장 바인딩 후에 내 사용자 정의 Tkinter 텍스트 위젯 바인딩이 실행되는지 어떻게 확인할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!