from Tkinter import * class App: def __init__(self, master): fm = Frame(master) Button(fm, text='Top').pack(side=TOP, anchor=W, fill=X, expand=YES) ...
確定! 回上一頁