Python:如何在单击该条目时清除文本条目?

时间:2016-02-25 03:34:49

标签: python tkinter-entry

如何在点击时清除tkinter entry? 我尝试按下命令按钮,但它无法正常工作。

self.entry1= Entry(self.mw,width=25,text=str1,justify=RIGHT,fg="red")
self.entry1.insert(INSERT, "type here..")
self.entry1.pack()

1 个答案:

答案 0 :(得分:2)

您需要做的就是将条目绑定到使用delete函数的函数。

def clear(event):
    self.entry1.delete(0, END)

self.entry1= Entry(self.mw,width=25,text=str1,justify=RIGHT,fg="red")
self.entry1.insert(INSERT, "type here..")
self.entry1.bind('<Button-1>', clear())
self.entry1.pack()