Window (tkinter) with no decoration

Matimus mccredie at gmail.com
Tue Feb 3 15:03:17 EST 2009


On Feb 3, 8:58 am, Djames Suhanko <djames.suha... at gmail.com> wrote:
> Hello, programmers!
>  I would like to do a menu bar like kicker or windows menu. is possible?
>
> --
> Djames Suhanko
> LinuxUser 158.760

Maybe you are looking for this?

import Tkinter

rt = Tkinter.Tk()
rt.overrideredirect(True)

# do stuff


Matt



More information about the Python-list mailing list