2017年10月2日 星期一

[python]示範如何使用tkinter的text widget 從頭插入,從尾插入以及取得整個text當中的內容

源自於
https://dotblogs.com.tw/ctosib/2016/11/18/181311

[python]示範如何使用tkinter的text widget


2.如何從頭插入,從尾插入以及取得整個text當中的內容

import Tkinter as tk
class Mainapplication(tk.Frame):
 def __init__(self,master=None):
  tk.Frame.__init__(self,master)
  self.pack()
  self.createwidget()
  
 def createwidget(self):
  self.label = tk.Label(self,text="hello world")
  self.label.pack()
  self.text = tk.Text(self,height=5)
  self.text.pack()
  self.button = tk.Button(self,text="OK",command=self.addcontent)
  self.button.pack()
  self.button2 = tk.Button(self,text="OK2",command=self.addcontent2)
  self.button2.pack()
  self.button3 = tk.Button(self,text="OK2",command=self.addcontent3)
  self.button3.pack()
 
 #將文字插入最前面(insert)
 def addcontent(self):
  self.text.insert(1.0,"OK\n")
 
 #將文字插入最後
 def addcontent2(self):
  self.text.insert(tk.END,"NO")
 
 #取得整個text當中的內容(get)
 def addcontent3(self):
  temp = self.text.get(1.0,tk.END)
  print temp

if __name__ =='__main__':
 root = tk.Tk()
 application = Mainapplication(master=root)
 root.mainloop()

沒有留言:

張貼留言

2024年4月24日 星期三 Node-Red Dashboard UI Template + AngularJS 參考 AngularJS教學 --2

 2024年4月24日 星期三 Node-Red Dashboard UI Template + AngularJS 參考 AngularJS教學 --2 AngularJS 實例 <!DOCTYPE html> <html> <head> &...