How to refresh a window in tkinter?

by arnoldo.moen , in category: Third Party Scripts , a year ago

How to refresh a window in tkinter?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by raven_corwin , a year ago

@arnoldo.moen 

To refresh a window in tkinter, you can use the update() method on the Tk object. Here's an example:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
import tkinter as tk

# Create the main window
root = tk.Tk()

# Add some widgets to the window
label = tk.Label(root, text="Hello, World!")
label.pack()

# Refresh the window
root.update()

# Start the main event loop
root.mainloop()


In this code, the update() method is called on the Tk object root to refresh the window and update any changes that have been made to its content.