when i try disappearing tkinter window with Tk.withdraw
and then i take it back by Tk.wm_iconify
it goes to last layer but i want it to be in the front
any help would be appreciate
when i try disappearing tkinter window with Tk.withdraw
and then i take it back by Tk.wm_iconify
it goes to last layer but i want it to be in the front
any help would be appreciate
You should be able to do this with root.deiconify
and root.lift()
where root
is your main window, the instance of Tk()