最小的 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()