Options

(Configuration options learned from New Mexico Tech tkinter reference on TopLevel)

Colors:

Focus & Focus Colors:

To see the effects very quickly, you can run:

import tkinter
t = tkinter.Tk()
t.configure(highlightthickness=5)
t.configure(highlightbackground="#FF0000")
t.configure(highlightcolor="#00FF00")

Style:

Dimensions:

Menu:

Questions

Resources

Discussion

LionKimbro: I'm generally of the mind that Flat is better than nested. Which is to say, rather than making menus upon menus of content, try to consolidate content onto a single page.

I would name this page "TopLevel" rather than "Widgets/TopLevel", and I would include content like "How do I hide the main toplevel Tkinter automatically pops up?" right on TopLevel, rather than making a whole page with a name that nobody is ever going to use or remember. (Simple noun phrases of 2-3 words generally make the best wiki names.)

Editorializing ends. :)

tkinter: Widgets/TopLevel (last edited 2010-10-09 03:33:11 by LionKimbro)