python中输入提示_Python-Tkinter Text输入内容在界面显示的实例
使用Tkinter(py2.7)text文本框中輸入內(nèi)容在界面中顯示–較為規(guī)整的代碼:
import Tkinter as tk
class Window:
def __init__(self,handle):
self.win = handle
self.createwindow()
self.run()
def createwindow(self):
self.win.geometry('400x400')
#label 1
self.label_text = tk.StringVar()
self.label_text.set("----")
self.lable = tk.Label(self.win,
textvariable=self.label_text,
font=('Arial',11),width=15,height=2)
self.lable.pack()
#text_contrl
self.entry_text = tk.StringVar()
self.entry = tk.Entry(self.win,textvariable=self.entry_text,width=30)
self.entry.pack()
#button
self.button =tk.Button(self.win,text="set label to text",width=15,height=2,command=self.setlabel)
self.button.pack()
def setlabel(self):
print(self.entry_text.get())
self.label_text.set(self.entry_text.get())
def run(self):
try:
self.win.mainloop()
except Exception as e:
print ("*** exception:\n".format(e))
def main():
window = tk.Tk()
window.title('hello tkinter')
Window(window).run()
if __name__ == "__main__":
main()
以上這篇Python-Tkinter Text輸入內(nèi)容在界面顯示的實例就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持我們。
本文標(biāo)題: Python-Tkinter Text輸入內(nèi)容在界面顯示的實例
本文地址: http://www.cppcns.com/jiaoben/python/265316.html
總結(jié)
以上是生活随笔為你收集整理的python中输入提示_Python-Tkinter Text输入内容在界面显示的实例的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 解决方案和项目的关系_建筑企业数字化转型
- 下一篇: insert exec 语句不能嵌套_走