python window窗口
摘要:
from Tkinter import * root=Tk() root.title('我是root窗口!') L=Label(root,text='我属于root') L.pack() f=Toplevel(root,width=30,height=20) f.title('我是toplevel') Lf=Label(f,text='我是toplevel') Lf.pack() root.... 阅读全文
posted @ 2019-12-04 09:36 gisai 阅读(1236) 评论(0) 推荐(0) 编辑