Questions tagged [ttk]

Ttk is the themed widget set for the Tk toolkit, previously known as Tile.

Ttk refers to the themed widgets, originally part of the Tile extension to Tk, which were integrated into Tk, starting with version 8.5.

Ttk aims to separate the code implementing a widget’s behavior from the code implementing its appearance. It includes 17 widgets that use the native look and feel across platforms. Some are very similar to widgets already existing in normal Tk, while others provide new functionality.

Related tags:

  • - the GUI toolkit that Ttk is a part of
  • - questions related to using Tk from Python
  • - questions related to using Tk from Perl

References:

1143 questions
-3
votes
1 answer

Python 3.4.3 Tkinter TTK file not opening

When I double click the .pyw file it doesn't run the code and open the GUI. It worked in 2.7 but I don't know. from tkinter import * from tkinter import ttk import os root = Tk() root.geometry('%dx%d+0+0' % (180 ,200)) root.title('Title…
TheEvil_potato
  • 33
  • 1
  • 1
  • 7
1 2 3
76
77