24

我想将程序的焦点设置为特定的entry小部件,以便我可以立即开始输入数据 - 我该怎么做?

我当前的代码

from Tkinter import *
root = Tk()
frame=Frame(root,width=100,heigh=100,bd=11)
frame.pack()
label = Label(frame,text="Enter a digit that you guessed:").pack()
entry= Entry(frame,bd=4)
entry.pack()

button1=Button(root,width=4,height=1,text='ok')
button1.pack()

root.mainloop()
4

2 回答 2

44

使用entry.focus()

from Tkinter import *
root = Tk()
frame=Frame(root,width=100,heigh=100,bd=11)
frame.pack()
label = Label(frame,text="Enter a digit that you guessed:").pack()
entry= Entry(frame,bd=4)
entry.pack()
entry.focus()
button1=Button(root,width=4,height=1,text='ok')
button1.pack()

root.mainloop()
于 2012-11-29T13:11:48.020 回答
3

我试过这种方式,没关系

entry= Entry(root)
entry.focus()
entry.pack
于 2019-12-16T10:30:34.613 回答