1
there is some way to close the window created (container = Tk()) other than the button close? wanted to create by code, example: a login screen, when the login is done, the login screen closes and opens the program with the features created.
1
there is some way to close the window created (container = Tk()) other than the button close? wanted to create by code, example: a login screen, when the login is done, the login screen closes and opens the program with the features created.
1
You can use it :
container.destroy()
Browser other questions tagged python tkinter interface
You are not signed in. Login or sign up in order to post.
Utilize
container.destroy(). This question was asked in S.O..– Caio de Paula Silva