from tkinter import * root=Tk() root.geometry('80x80+0+0') print(root.pack_slaves()) Label(root,text='pack1',bg='red').pack(fill=Y) ...
確定! 回上一頁