from tkinter import * import tkinter.ttk as ttk class MyApp(Tk): def __init__(self): Tk.__init__(self) container = ttk.Frame(self) ...
確定! 回上一頁