import tkinter as tk root = tk.Tk() variable = tk.StringVar() variable.set("one") w = tk.OptionMenu(root, variable, "one", "two", ...
確定! 回上一頁