>  기사  >  백엔드 개발  >  내장 바인딩 후에 내 사용자 정의 Tkinter 텍스트 위젯 바인딩이 실행되는지 어떻게 확인할 수 있나요?

내장 바인딩 후에 내 사용자 정의 Tkinter 텍스트 위젯 바인딩이 실행되는지 어떻게 확인할 수 있나요?

Susan Sarandon
Susan Sarandon원래의
2024-11-04 07:21:02961검색

How Can I Ensure My Custom Tkinter Text Widget Bindings Execute After Built-in Bindings?

내장 바인딩 후 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.