摘要:
菜单 from tkinter import * # get widget classes from tkinter.messagebox import * # get standard dialogs def notdone(): showerror('Not implemented', 'Not 阅读全文
摘要:
Message and Entry组件 from tkinter import * msg = Message(text="Oh by the way, which one's Pink?") msg.config(bg='pink', font=('times', 16, 'italic')) m 阅读全文
摘要:
from tkinter import * # get widget classes from tkinter.messagebox import askokcancel # get canned std dialog class Quitter(Frame): # subclass our GUI 阅读全文