我正在Ubuntu上編寫一個Python程序TKinter
來導入並打印 來自Text
小部件中特定文件夾的文件的名稱。 這只是將文件名添加到Text
窗口小部件中的以前的電影名稱,但我想先清除它,然後添加一個新的文件名列表。 但我正在努力清除Text
小部件的前一個列表 文件名。如何清除/刪除Tkinter Text小部件的內容?
有人可以解釋如何清除Text
小部件?
Screenshoot和編碼下面給出:
import os
from Tkinter import *
def viewFile():
path = os.path.expanduser("~/python")
for f in os.listdir(path):
tex.insert(END, f + "\n")
if __name__ == '__main__':
root = Tk()
step= root.attributes('-fullscreen', True)
step = LabelFrame(root, text="FILE MANAGER", font="Arial 20 bold italic")
step.grid(row=0, columnspan=7, sticky='W', padx=100, pady=5, ipadx=130, ipady=25)
Button(step, text="File View", font="Arial 8 bold italic", activebackground=
"turquoise", width=30, height=5, command=viewFile).grid(row=1, column=2)
Button(step, text="Quit", font="Arial 8 bold italic", activebackground=
"turquoise", width=20, height=5, command=root.quit).grid(row=1, column=5)
tex = Text(master=root)
scr=Scrollbar(root, orient=VERTICAL, command=tex.yview)
scr.grid(row=2, column=2, rowspan=15, columnspan=1, sticky=NS)
tex.grid(row=2, column=1, sticky=W)
tex.config(yscrollcommand=scr.set, font=('Arial', 8, 'bold', 'italic'))
root.mainloop()
您是否閱讀過文本小部件的任何文檔?此功能清楚記錄。你說你在掙扎,你能告訴我們你試過了什麼嗎? – 2015-01-15 15:22:51
也許http://effbot.org/tkinterbook/entry.htm#Tkinter.Entry.delete-method – 2015-01-15 15:34:39
你可以在這裏寫一條語句來得到我要求的結果 – Fahadkalis 2015-01-15 15:45:41