0

is there any way to make a tkinter program on top of all windows? Like switching to a new window will not minimize or put the tkinter program back, thanks!

Absolute
  • 11
  • 2

1 Answers1

1

Yes. You just need to set the window manager attribute topmost:

mywindow.wm_attributes("-topmost", True)
zondo
  • 19,901
  • 8
  • 44
  • 83