答案 0 :(得分:51)
我发现TkDocs教程非常有用。它描述了使用Python和Tk
以及Tkinter
构建ttk
接口,并记录了Python 2和3之间的差异。它还包含Perl,Ruby和Tcl中的示例,因为其目标是教授Tk本身,而不是特定语言的绑定。
我从头到尾都没有经历过整个事情,而是只使用了许多主题作为我坚持的事情的例子,但它非常具有教学性和舒适性。今天阅读介绍和前几节让我觉得我将开始研究其余部分。
最后,它是最新的,该网站有一个非常漂亮的外观。他还有一些其他页面值得一试(Widgets,Resources,Blog)。这家伙做了很多工作,不仅教授Tk,而且还提高了人们对它曾经不是丑陋野兽的认识。
答案 1 :(得分:20)
在某些示例中使用的模块名称是Python 2.7中使用的模块名称 以下是Python 3中名称更改的参考:link
ttk的便利之一是您可以选择预先存在的 theme,
这是应用于Styles小部件的一整套ttk。
这是我写的一个例子(对于Python 3),它允许您从 Combobox 中选择任何可用的主题:
import random
import tkinter
from tkinter import ttk
from tkinter import messagebox
class App(object):
def __init__(self):
self.root = tkinter.Tk()
self.style = ttk.Style()
available_themes = self.style.theme_names()
random_theme = random.choice(available_themes)
self.style.theme_use(random_theme)
self.root.title(random_theme)
frm = ttk.Frame(self.root)
frm.pack(expand=True, fill='both')
# create a Combobox with themes to choose from
self.combo = ttk.Combobox(frm, values=available_themes)
self.combo.pack(padx=32, pady=8)
# make the Enter key change the style
self.combo.bind('<Return>', self.change_style)
# make a Button to change the style
button = ttk.Button(frm, text='OK')
button['command'] = self.change_style
button.pack(pady=8)
def change_style(self, event=None):
"""set the Style to the content of the Combobox"""
content = self.combo.get()
try:
self.style.theme_use(content)
except tkinter.TclError as err:
messagebox.showerror('Error', err)
else:
self.root.title(content)
app = App()
app.root.mainloop()
旁注:我注意到使用Python 3.3时有一个'vista'主题(但不是2.7)。
答案 2 :(得分:3)
我建议您阅读documentation。它简单而有权威,对初学者也有好处。
答案 3 :(得分:0)
它并不是很新鲜,但this简洁明了,而且从我看到的有效的Python 2和3中也是如此。