Tkinter에서 시계 애플리케이션용 업데이트 예약
Tkinter에서 자체적으로 업데이트되는 시계를 만드는 것은 어려울 수 있습니다. 이를 달성하기 위해 루프에서 time.sleep()을 사용하면 GUI가 정지될 수 있습니다. 이 기사에서는 작동 시계를 생성할 수 있도록 Tkinter에서 업데이트를 예약하는 방법을 살펴봅니다.
Tkinter 루트 창은 after 메소드를 제공합니다. 이 메서드는 지정된 시간 간격 후에 함수가 호출되도록 예약합니다. 예약된 함수 내에서 이후를 호출하면 반복 이벤트가 설정됩니다.
다음은 Python 코드 예제입니다.
import Tkinter as tk import time class App(): def __init__(self): # Initialize the Tkinter window self.root = tk.Tk() # Create the Label widget to display the time self.label = tk.Label(text="") self.label.pack() # Schedule the initial clock update self.update_clock() # Run the Tkinter event loop self.root.mainloop() def update_clock(self): # Get the current time formatted as "hh:mm:ss" now = time.strftime("%H:%M:%S") # Update the Label widget with the current time self.label.configure(text=now) # Schedule the next clock update self.root.after(1000, self.update_clock) app = App()
함수 호출을 예약한 후에는 정확히 실행되지 않을 수 있다는 점을 기억하세요. 잠재적인 앱 활동으로 인해 정시에 그러나 Tkinter의 단일 스레드 특성으로 인해 일반적으로 마이크로초 단위의 지연이 최소화됩니다.
위 내용은 GUI를 정지하지 않고 Tkinter에서 원활하게 업데이트되는 시계를 어떻게 만들 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!