Tkinter清除条目

代码示例

7
0

tkinter清除条目

widget.delete(0, END)
1
0

python tkinter清除条目

# Clear an entry widget on button press
from tkinter import *

root = Tk()

def clearEntryInput():
    entry.delete(0, END)

entry = Entry(root, width=30) # You must .pack() or .grid() on the next line
entry.pack()

Button(root, text="Clear", command=clearEntryInput).pack()

root.mainloop()

# This is the error you get if you .pack() or .grid() on the same line:
# AttributeError: 'NoneType' object has no attribute 'delete'
# https://stackoverflow.com/questions/13002843/attributeerror-nonetype-object-has-no-attribute-delete
0
0

python tkinter清除tk

tk = Tk()
tk.destroy()

其他语言

此页面有其他语言版本

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................