from tkinter import * # 增加如下导包语句即可 from tkinter.ttk import * root = Tk() root.geometry("300x300") top = LabelFrame(root, text="Label") ...
確定! 回上一頁