大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
如下所示:
为益阳等地区用户提供了全套网页设计制作服务,及益阳网站建设行业解决方案。主营业务为成都做网站、网站制作、成都外贸网站建设、益阳网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!#coding=utf-8 #布局自定义尺寸 from tkinter import * class App: def __init__(self,master): frame=Frame(master) frame.pack(fill=BOTH,expand=1) listbox=Listbox(frame) #listbox=Listbox(frame,height=3,selectmode=BROWSE) #curselection() for item in ['red','green','blue','yellow','pink']: listbox.insert(END,item) listbox.grid(row=0,column=0,sticky=W+E+N+S) # sticky 适配 text=Text(frame,relief=SUNKEN) text.grid(row=0,column=1,sticky=W+E+N+S) text.insert(END,'word'*1000) frame.columnconfigure(1,weight=1) #尺寸适配 frame.rowconfigure(0,weight=1) #尺寸适配 #Spinbox(frame,values=('a','b','c')).grid(row=3) #get() root=Tk() root.wm_title('尺寸适配') app=App(root) root.geometry("400x300+0+0") #尺寸适配 root.mainloop()