1

Quick question, is there any way I can prevent a Tkinter window from being moved by the mouse? I couldn't seem to find any answers on google so I'm asking my own question. Thanks in advance!

Jayden Collis
  • 145
  • 11

1 Answers1

0

A way to do this is by Using

Overrideredirect(1)

However this will ignore completely all window functions from the os window manager. If you want the rest of the functions you will have to create a new fake window title bar yourself and assign all the functionalities you need (window close, minimize, maximize)

qeiynn
  • 43
  • 6