|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
from tkinter import *
root=Tk()
Label(root,text='作品:').grid(row=0,column=0)
Label(root,text='作者:').grid(row=1,column=0)
e1=Entry(root)
e2=Entry(root)
e1.grid(row=0,column=1,padx=10,pady=5)
e2.grid(row=1,column=1,padx=10,pady=5)
def show():
print("作品:《%s》"% e1.get())
print("作者:%s"% e2.get())
Button(root,text='获取信息',width=10,command=show)\
.grid(row=3,column=0,sticky=W,padx=10,pady=5)
Button(root,text='退出',width=10,command=root.quit)\
.grid(row=3,column=1,sticky=E,padx=10,pady=5)
mainloop()
root.withdraw()
master=Tk()
Label(master,text='作品:').grid(row=0,column=0)
Label(master,text='作者:').grid(row=1,column=0)
e1=Entry(master)
e2=Entry(master)
e1.grid(row=0,column=1,padx=10,pady=5)
e2.grid(row=1,column=1,padx=10,pady=5)
def show():
print("作品:《%s》"% e1.get())
print("作者:%s"% e2.get())
Button(master,text='获取信息',width=10,command=show)\
.grid(row=3,column=0,sticky=W,padx=10,pady=5)
Button(master,text='退出',width=10,command=master.quit)\
.grid(row=3,column=1,sticky=E,padx=10,pady=5)
mainloop()
仿佛发现新世界 |
|