如何在构造函数中设置Tkinter Entry小部件的默认文本?我检查了文档,但是我没有在构造函数中看到类似"string="
选项的内容?
有一个类似的答案用于使用表和列表,但这是一个简单的Entry小部件。
答案 0 :(得分:50)
使用Entry.insert
。例如:
try:
from tkinter import * # Python 3.x
except Import Error:
from Tkinter import * # Python 2.x
root = Tk()
e = Entry(root)
e.insert(END, 'default text')
e.pack()
root.mainloop()
或使用textvariable
选项:
try:
from tkinter import * # Python 3.x
except Import Error:
from Tkinter import * # Python 2.x
root = Tk()
v = StringVar(root, value='default text')
e = Entry(root, textvariable=v)
e.pack()
root.mainloop()
答案 1 :(得分:1)
对我来说
Entry.insert(END, 'your text')
没有用。
我使用了 Entry.insert(-1, 'your text')
。
谢谢。