-2

I was wondering if there is a way to remove the borders (titlebar with buttons and the edges on each side) of a tkinter window. Does someone know how to do that?

Couldn't find any solution for this in the web.

  • import tkinter as tk root = tk.Tk() root.geometry('200x200+100+100') root.resizable(False, False) root.update_idletasks() root.overrideredirect(True) root.mainloop() – toyota Supra Nov 16 '22 at 16:39

1 Answers1

-1

Try to set borderwidth and highlightthickness to 0

Paul-Marie
  • 874
  • 1
  • 6
  • 24