问题描述
如何在tkinter
中的条目中添加占位符?我不认为它具有HTML之类的占位符功能.我发现要使文本在单击时消失,必须添加onclick
事件,但是如何创建onclick
事件以及如何使文本首先显示呢?这是我正在使用的代码.
How would I add a placeholder to an entry in tkinter
? I don't believe it has a placeholder function like HTML for example. I figured out that to make the text disappear when you click it, you will have to add an onclick
event, but how do I create the onclick
event and how do you make the text appear in the first place? Here is the code I'm working with.
我想说在这里输入您的整数"
I would like it to say " Enter your integer here"
vcmd = (self.register(self.onValidate), '%S')
self.text = Entry(self, validate='key', vcmd=vcmd)
self.text.pack()
def onValidate(self, S):
if S in '0123456789.':
return True
return False
def clear_entry(self):
self.text.delete(0, END)
self.text.pack()
据我所知,
推荐答案
U无法像HTML那样添加占位符,但您可以做出类似的行为.进行输入时,您可以执行类似>
U can't add placeholder like HTML as far as i know, but u can make similar behavior. When you make entry you can do something like>
from tkinter import *
def clear_entry(event, entry):
entry.delete(0, END)
root = Tk()
entry = Entry(root)
entry.pack()
placeholder_text = 'some text'
entry.insert(0, placeholder_text)
entry.bind("<Button-1>", lambda event: clear_entry(event, entry))
root.mainloop()
P.S:我从脑子里写了这个,还没有测试
P.S: I've wrote this from my head , haven't tested it
这篇关于如何在Tkinter中添加占位符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!