Removing minimize/maximize buttons in Tkinter
In general, what decorations the WM (window manager) decides to display can not be easily dictated by a toolkit like Tkinter. So let me summarize what I know plus what I found: import Tkinter as tk root= tk.Tk() root.title(“wm min/max”) # this removes the maximize button root.resizable(0,0) # # if on MS Windows, this might … Read more