最小的 tkinter 应用程序
tkinter
是一个 GUI 工具包,它提供了 Tk / Tcl GUI 库的包装,并包含在 Python 中。以下代码使用 tkinter
创建一个新窗口,并在窗体中放置一些文本。
注意:在 Python 2 中,大小写可能略有不同,请参阅下面的备注部分。
import tkinter as tk
# GUI window is a subclass of the basic tkinter Frame object
class HelloWorldFrame(tk.Frame):
def __init__(self, master):
# Call superclass constructor
tk.Frame.__init__(self, master)
# Place frame into main window
self.grid()
# Create text box with "Hello World" text
hello = tk.Label(self, text="Hello World! This label can hold strings!")
# Place text box into frame
hello.grid(row=0, column=0)
# Spawn window
if __name__ == "__main__":
# Create main window object
root = tk.Tk()
# Set title of window
root.title("Hello World!")
# Instantiate HelloWorldFrame object
hello_frame = HelloWorldFrame(root)
# Start GUI
hello_frame.mainloop()