在 Tkinter 中安排時鐘應用程式的更新
在 Tkinter 中,創建一個自我更新的時鐘可能會帶來挑戰。在循環中使用 time.sleep() 來實現此目的可能會凍結 GUI。本文探討如何在 Tkinter 中安排更新,使您能夠建立一個工作時鐘。
Tkinter 根視窗提供了 after 方法。此方法安排在指定時間間隔後呼叫一個函數。透過在預定函數中呼叫 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()
記住,當 after 調度函數呼叫時,它可能不會準確執行它由於潛在的應用程式活動而準時。然而,Tkinter 的單執行緒特性通常會導致微秒級的最小延遲。
以上是如何在 Tkinter 中建立平滑更新的時鐘而不凍結 GUI?的詳細內容。更多資訊請關注PHP中文網其他相關文章!