이 예에서는 메인 스레드가 대기 중이기 때문에 버튼을 누르면 GUI가 정지됩니다. 계속하기 전에 Thread(target = self.threaded_function)에 의해 생성된 스레드가 완료되도록 합니다. GUI의 응답성을 유지하려면 메인 스레드를 차단하지 않는 것이 중요합니다.
큐를 사용하여 스레드와 GUI 간에 데이터를 전달하는 대체 구현은 다음과 같습니다.
queue = Queue() def threaded_function(): while True: if not queue.empty(): item = queue.get() print(item) # Do other processing here def helloCallback(): queue.put("asd") m = magic() B = tkinter.Button(top, text = "Hello", command = helloCallback) B.pack() top.mainloop() # Start the thread in the background t = threading.Thread(target = threaded_function) t.start()
여기서 구현 시, threaded_function이 백그라운드에서 실행되는 동안 GUI 스레드는 계속 응답합니다. 큐는 두 스레드 간에 데이터를 통신하는 데 사용됩니다. helloCallback 함수가 호출되면 대기열에 항목을 추가한 다음 threaded_function에 의해 검색되어 처리됩니다.
위 내용은 스레드가 완료되기를 기다리는 동안 Tkinter GUI가 정지되는 것을 방지하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!