跳转到内容

Python 编程/Tkinter

来自维基教科书,开放的世界中的开放书籍

Tkinter 是 Tcl/Tk 的 Python 包装器,提供跨平台的 GUI 工具包。在 Windows 上,它与 Python 捆绑在一起;在其他操作系统上,它可以安装。可用小部件集比其他一些工具包中的小部件集小,但由于 Tkinter 小部件是可扩展的,许多缺少的复合小部件可以使用可扩展性创建,例如组合框和滚动窗格。

IDLE,Python 的集成开发和学习环境,是用 Tkinter 编写的,通常与 Python 一起分发。您可以通过使用 IDLE 的菜单和对话框来了解 Tkinter 的功能。例如,“选项”>“配置 IDLE...”对话框显示了各种 GUI 元素,包括选项卡式界面。您可以通过研究 IDLE 源代码来学习使用 Tkinter 进行编程,该代码在 Windows 上可以在 C:\Program Files\Python27\Lib\idlelib 中找到。

Python 3:此页面上的示例适用于 Python 2。在 Python 3 中,以前称为模块 Tkinter 的模块现在是 tkinter,以前称为 tkMessageBox 的模块现在是 messagebox,等等。

最小示例

[编辑 | 编辑源代码]

一个最小的示例

from Tkinter import *
root = Tk()
frame = Frame(root)
frame.pack()
label = Label(frame, text="Hey there.")
label.pack()
quitButton = Button(frame, text="Quit", command=frame.quit)
quitButton.pack()
root.mainloop()

一个更紧凑的最小示例 - 后面不再需要对 GUI 项目的引用

from Tkinter import *
root = Tk()
frame = Frame(root)
frame.pack()
Label(frame, text="Hey there.").pack()
Button(frame, text="Quit", command=frame.quit).pack()
root.mainloop()

一个创建从 Frame 派生的应用程序类的最小示例

from Tkinter import *

class App(Frame):
  def __init__(self, master):
    Frame.__init__(self)
    self.label = Label(master, text="Hey there.")
    self.label.pack()    
    self.quitButton = Button(master, text="Quit", command=self.quit)
    self.quitButton.pack()

if __name__ == '__main__':
  root = Tk()
  app = App(root)
  root.mainloop()

消息框

[编辑 | 编辑源代码]

可以使用 tkMessageBox 创建简单的消息框,如下所示

import Tkinter, tkMessageBox
Tkinter.Tk().withdraw() # Workaround: Hide the window
answer = tkMessageBox.askokcancel("Confirmation", "File not saved. Discard?")
answer = tkMessageBox.askyesno("Confirmation", "Do you really want to delete the file?")
# Above, "OK" and "Yes" yield True, and "Cancel" and "No" yield False
tkMessageBox.showwarning("Warning", "Timeout has elapsed.")
tkMessageBox.showwarning("Warning", "Timeout has elapsed.", icon=tkMessageBox.ERROR)
tkMessageBox.showerror("Warning", "Timeout has elapsed.")

链接

文件对话框

[编辑 | 编辑源代码]

文件对话框可以创建如下所示

import Tkinter, tkFileDialog
Tkinter.Tk().withdraw() # Workaround: Hide the window
filename1 = tkFileDialog.askopenfilename()
filename2 = tkFileDialog.askopenfilename(initialdir=r"C:\Users")
filename3 = tkFileDialog.asksaveasfilename()
filename4 = tkFileDialog.asksaveasfilename(initialdir=r"C:\Users")
if filename1 <> "":
  for line in open(filename1): # Dummy reading of the file
    dummy = line.rstrip()

链接

单选按钮

[编辑 | 编辑源代码]

单选按钮可用于创建具有多个选项的简单选择对话框

from Tkinter import *
master = Tk()  
choices = [("Apple", "a"), ("Orange", "o"), ("Pear", "p")]
defaultChoice = "a"
userchoice = StringVar()
userchoice.set(defaultChoice)
def cancelAction(): userchoice.set("");master.quit()
    Label(master, text="Choose a fruit:").pack()
for text, key in choices: 
    Radiobutton(master, text=text, variable=userchoice, value=key).pack(anchor=W)
Button(master, text="OK", command=master.quit).pack(side=LEFT, ipadx=10)
Button(master, text="Cancel", command=cancelAction).pack(side=RIGHT, ipadx=10)
mainloop()
if userchoice.get() <>"":
    print userchoice.get() # "a", or "o", or "p"
else:
    print "Choice canceled."

单选按钮的替代方法,它会立即对按钮按下做出反应

from Tkinter import *
import os
buttons = [("Users", r"C:\Users"),
           ("Windows", r"C:\Windows"),
           ("Program Files", r"C:\Program Files")]
master = Tk()
def open(filePath):
  def openInner():
    os.chdir(filePath) # Cross platform
    #os.system('start "" "'+filePath+'') # Windows
    master.quit()
  return openInner
Label(master, text="Choose a fruit:").pack()
for buttonLabel, filePath in buttons:
  Button(master, text=buttonLabel, command=open(filePath)).pack(anchor=W)
mainloop()

链接

列表框

[编辑 | 编辑源代码]

列表框可用于创建简单的多项选择对话框

from Tkinter import *
master = Tk()  
choices = ["Apple", "Orange", "Pear"]
canceled = BooleanVar()
def cancelAction(): canceled.set(True); master.quit()
Label(master, text="Choose a fruit:").pack()
listbox = Listbox(master, selectmode=EXTENDED) # Multiple options can be chosen
for text in choices: 
  listbox.insert(END, text)
listbox.pack()    
Button(master, text="OK", command=master.quit).pack(side=LEFT, ipadx=10)
Button(master, text="Cancel", command=cancelAction).pack(side=RIGHT, ipadx=10)
mainloop()
if not canceled.get():
  print listbox.curselection() # A tuple of choice indices starting with 0
  # The above is a tuple even if selectmode=SINGLE
  if "0" in listbox.curselection(): print "Apple chosen."
  if "1" in listbox.curselection(): print "Orange chosen."
  if "2" in listbox.curselection(): print "Pear chosen."  
else:
  print "Choice canceled."

链接

复选框

[编辑 | 编辑源代码]

复选框或复选按钮可以创建如下所示

from Tkinter import *
root = Tk()
checkbuttonState = IntVar()
Checkbutton(root, text="Recursive", variable=checkbuttonState).pack()
mainloop()
print checkbuttonState.get() # 1 = checked; 0 = unchecked

链接

输入框

[编辑 | 编辑源代码]

Entry 小部件,一个单行文本输入字段,可以按如下方式使用

from Tkinter import *
root = Tk()
Label(text="Enter your first name:").pack()
entryContent = StringVar()
Entry(root, textvariable=entryContent).pack()
mainloop()
print entryContent.get()

链接

菜单可以创建如下所示

from Tkinter import *
root = Tk()
def mycommand(): print "Chosen."
menubar = Menu(root)

menu1 = Menu(menubar, tearoff=0)
menu1.add_command(label="New", command=mycommand)
menu1.add_command(label="Clone", command=mycommand)
menu1.add_separator()
menu1.add_command(label="Exit", command=root.quit)
menubar.add_cascade(label="Project", menu=menu1)
  
menu2 = Menu(menubar, tearoff=0)
menu2.add_command(label="Oval", command=mycommand)
menu2.add_command(label="Rectangle", command=mycommand)
menubar.add_cascade(label="Shapes", menu=menu2)

root.config(menu=menubar)

mainloop()

链接

标签框架

[编辑 | 编辑源代码]

可以使用 LabelFrame 小部件创建其他元素周围的框架,如下所示

from Tkinter import *
root = Tk()
Label(text="Bus").pack()
frame = LabelFrame(root, text="Fruits") # text is optional
frame.pack()
Label(frame, text="Apple").pack()
Label(frame, text="Orange").pack()
mainloop()

链接

Message 类似于 Label,但可以跨多行换行。示例

from Tkinter import *
root = Tk()
Message(text="Lazy brown fox jumped. " * 5, width=100).pack() # width is optional
mainloop()

链接

选项菜单

[编辑 | 编辑源代码]

下拉列表,在 Tkinter 选项菜单中,可以创建如下所示

from Tkinter import *
root = Tk()
options = ["Apple", "Orange", "Pear"]
selectedOption = StringVar()
selectedOption.set("Apple") # Default
OptionMenu(root, selectedOption, *options).pack()  
mainloop()
print selectedOption.get() # The text in the options list

链接

Text 小部件更复杂,允许编辑纯文本和格式化文本,包括多种字体。

要添加的示例。

链接

Tcl/Tk 版本

[编辑 | 编辑源代码]

Python 2.3 的 Windows 安装程序附带了 Tcl/Tk 8.4.3。您可以了解有关该版本的更多信息

import Tkinter
print Tkinter.TclVersion # Up to 8.5
print Tkinter.TkVersion # Up to 8.5

链接

[编辑 | 编辑源代码]
[编辑 | 编辑源代码]
华夏公益教科书