This is a static archive of the Python wiki, which was retired in February 2026 due to lack of usage and the resources necessary to serve it — predominately to bots, crawlers, and LLM companies.
Pages are preserved as they were at the time of archival. For current information, please visit python.org.
If a change to this archive is absolutely needed, requests can be made via the infrastructure@python.org mailing list.

Deprecated since Python 3.6

This Tk extension is unmaintained and should not be used in new code. Use tkinter.ttk instead.

The Tix (Tk Interface Extension) module provides an additional rich set of widgets to TkInter. Although the standard Tk library has many useful widgets, they are far from complete. The Tix library provides most of the commonly needed widgets that are missing from standard Tk.

Lib/lib-tk/Tix.py is a standard library module; the source distribution of Python has a set of demos in Demo/tix/ and it is described in the reference manual:

Python 3: http://docs.python.org/3.3/library/tkinter.tix.html

To take a look at an example of how Tix can improve the look of a TkInter application, look at the 'Tixed' version of IDLE called IDEStudio at http://starship.python.net/crew/mike/Idle/ (not accessible anymore but archived with sources here).


2026-02-14 16:14