选择项
mainloop() #启动窗体循环功能
运行效果:
?...列表框组件
lb_show=Listbox(master,bg="yellow",height=5,width=20) #创建黄色列表框实例
lb_show.pack(side="top") #相对于...(8)进行顶对齐列表框(9)
for item in ["one","tow","three","four"]:
lb_show.insert(END,item) #循环插入4个值到列表框中...t1_show=Text(tL_show,width=10,height=4) #在该窗体增加输入文本框1
t2_show=Text(tL_show,width=10,height=4) #在该窗体增加输入文本框...代码来源:
Python编程从零基础到项目实战(微课视频版)