python simple example

喜你入骨 提交于 2019-12-10 04:01:37
from Tkinter import *

def on_click():
        label['text'] = text.get()

root = Tk(className='bitunion')
label = Label(root)
label['text'] = 'be on your own'
label.pack()

text = StringVar()
text.set('hello')

entry = Entry()
entry['textvariable'] = text
entry.pack()

button = Button(root)
button['text'] = 'hello my button'
button['command'] = on_click
button.pack()

root.mainloop()
参考:http://kb.cnblogs.com/page/75245/
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!