摘要:
单选框 复选框 按钮 标签 文本框的应用 1 #coding=utf-8 2 __author__ = 'minmin' 3 from Tkinter import * 4 5 class Application(Frame): 6 def __init__(self,mast... 阅读全文
摘要:
1 #coding=utf-8 2 # __author__ = 'minmin' 3 from Tkinter import * 4 5 #创建一个基于Frame的Application类 6 class Application(Frame): 7 #初始化 8 def __i... 阅读全文