Full-screen display in Tkinter

Markus von Ehr markus.vonehr at ipm.fhg.de
Thu Jul 4 10:43:28 EDT 2002


root=Tk()
root.geometry(your_geometry)
root.overrideredirect(1)

your_geometry is:
"%dx%d%+d%+d" % (width, height, xoffset, yoffset)


Svein Brekke schrieb:

> I am building a slide show application with Tkinter, and need
> to create a full-screen window, i.e. supressing title bar
> and start menu etc.
>
> Is that supported in Tkinter?
> I work on Win2000 with python 2.2, but would like my code to
> be portable to other platforms.
>
> Any help or hints will be appreciated.
>
> Svein Brekke




More information about the Python-list mailing list