I want a tkinter window that isn't fullscreen. Normally, if I click outside of the window, the window will automatically go "underneath" the window I just clicked on. How can I make this window stay on the front of the screen, even when I click outside of it?
Asked
Active
Viewed 579 times
1
-
6Maybe you need `root.wm_attributes("-topmost", True)`? – jizhihaoSAMA Jun 17 '20 at 02:36
-
4Does this answer your question? [How to keep the window focus on new Toplevel() window in Tkinter?](https://stackoverflow.com/questions/15944533/how-to-keep-the-window-focus-on-new-toplevel-window-in-tkinter) – MeetTitan Jun 17 '20 at 02:52
-
1@MeetTitan That isn't a duplicate because OP's questions is asking how to do it forever. The question you linked is similar, but not duplcate. – 10 Rep Jun 17 '20 at 02:54