61

我正在TKinterUbuntu 上编写一个 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()
4

8 回答 8

101

我通过添加“1.0”来检查我的情况,它开始工作

tex.delete('1.0', END)

你也可以试试这个

于 2015-01-15T16:01:53.857 回答
25

根据 tkinterbook,清除文本元素的代码应该是:

text.delete(1.0,END)

这对我有用。资源

它与清除 entry 元素不同,它是这样完成的:

entry.delete(0,END) #注意 0 而不是 1.0

于 2016-11-04T15:00:07.143 回答
10

这行得通

import tkinter as tk
inputEdit.delete("1.0",tk.END)
于 2018-04-11T02:14:17.193 回答
8
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使我们能够在不定义实际功能的情况下删除内容。

于 2017-07-20T00:05:52.823 回答
3

对我来说,“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)
于 2018-06-19T20:19:07.143 回答
0
text.delete(0, END)

这将删除文本框中的所有内容

于 2021-06-07T17:18:28.250 回答
0

很多答案要求您使用END,但如果这对您不起作用,请尝试:

text.delete("1.0", "end-1c")

于 2020-11-20T23:38:22.267 回答
0

我认为这:

text.delete("1.0", tkinter.END)

或者如果你这样做了from tkinter import *

text.delete("1.0", END)

那应该工作

于 2020-08-20T23:48:32.993 回答