2011年6月24日
摘要: #-*- coding:utf-8 -*-from Tkinter import *import urllibclass window(object): def __init__(self,root): self.rr = root self.entry = Entry(self.rr) self.entry.place(x=5,y=15) self.button = Button(self.rr,text='website',command=self.solve) self.button.place(x=100,y=15) self.edit = Text(self.rr,h 阅读全文
posted @ 2011-06-24 10:48 eth0 阅读(159) 评论(0) 推荐(0) 编辑