我正在Ubuntu上的TKinter
编写一个Python程序来导入和打印
Text
小部件中特定文件夹中的文件名称。
它只是将文件名添加到Text
中的前一个文件名中
小部件,但我想首先清除它,然后添加一个新的文件名列表。
但我正在努力清除Text
小部件之前的列表
文件名。
有人可以解释如何清除Text
小部件吗?
屏幕截图和编码如下:
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()
答案 0 :(得分:44)
我只是添加了' 1.0'它开始工作
tex.delete('1.0', END)
你也可以试试这个
答案 1 :(得分:14)
根据tkinterbook,清除文本元素的代码应为:
text.delete(1.0,END)
这对我有用。 source
与清除条目元素不同,这是这样做的:
entry.delete(0,END)#note 0而不是1.0
答案 2 :(得分:3)
from Tkinter import *
app = Tk()
# Text Widget + Font Size
txt = Text(app, font=('Verdana',8))
txt.pack()
# Delete Button
btn = Button(app, text='Delete', command=lambda: txt.delete(1.0,END))
btn.pack()
app.mainloop()
以下是txt.delete(1.0,END)
的示例。
使用lambda
使我们能够在不定义实际功能的情况下删除内容。
希望有所帮助
答案 3 :(得分:3)
这是有效的
import tkinter as tk
inputEdit.delete("1.0",tk.END)
答案 4 :(得分:0)
对我而言,“ 1.0”无效,但“ 0”有效。这是Python 2.7.12,仅供参考。还取决于您如何导入模块。方法如下:
import Tkinter as tk
window = tk.Tk()
textBox = tk.Entry(window)
textBox.pack()
当需要清除它时,将调用以下代码。在我的情况下,有一个保存按钮,用于保存“输入”文本框中的数据,单击该按钮后,该文本框将被清除
textBox.delete('0',tk.END)
答案 5 :(得分:0)
我认为:
text.delete("1.0", tkinter.END)
或者如果您做了from tkinter import *
text.delete("1.0", END)
应该可以
答案 6 :(得分:0)
很多答案都要求您使用END
,但如果这样对您不起作用,请尝试:
text.delete("1.0", "end-1c")
答案 7 :(得分:-1)
text.delete(0, END)
这会删除文本框内的所有内容