Nunca lo he intentado pero esto es algo que se me ocurre por el momento.
Otra cosa que se pude hacer es utilizar
y después agregar un borde a la ventana.
Código (python) [Seleccionar]
__author__ = '0roch1'
# -*- coding: utf-8 -*-
try:
from Tkinter import * # Python2
except ImportError:
from tkinter import * # Python3
def __Cancel(event=None): pass
root = Tk()
root.title("Título")
root.resizable(0,0)
root.attributes("-toolwindow",-1)
root.protocol('WM_DELETE_WINDOW', __Cancel )
root.mainloop()
Otra cosa que se pude hacer es utilizar
Código (python) [Seleccionar]
root.overrideredirect(1)
y después agregar un borde a la ventana.