条目 Tkinter 未出现在脚本启动时

Entry Tkinter doesn't appear at the launching of the script

我用 tkinter 创建了一个小图形用户界面来训练自己使用 tkinter。 我的脚本中有一个条目,但是当我启动脚本时该条目没有出现,我必须单击它才能显示。有没有人有办法让它直接出现? 谢谢

Picture of the gui with the problem here

from tkinter import *

app = Tk()
app.title("Vérification palindrome")
app.geometry("320x100")
app.resizable(width=False, height=False)

txt = Entry(app) #entrée utilisateur
ch = Label(app) #label qui affiche le resultat, vide/invisible au demarrage

txt.grid(row=0, column=0, sticky=W)
ch.grid(row=1, column=0)

#fonction de verification du palindrome
def palindrome():
    ch.grid(row=1, column=0) #permet de réafficher un resultat si la fonction de nettoyage d'écran a été utilisée
    mot = txt.get()
    mot = mot.lower()
    if mot == "":
        reponse = "Veuillez indiquez un mot ou un nombre"
        ch.configure(text = reponse)
    else:
        motinverse = ''.join(reversed(mot))
        if mot == motinverse:
            reponse = mot + " est un palindrome"
            ch.configure(text = reponse)
        else:
            reponse = mot + " n'est pas un palindrome"
            ch.configure(text = reponse)

Button(app,text='Vérifier',command=palindrome).grid(row=0 , column=1) # bouton qui lance la commande

#fonction de "nettoyage" de l'ecran
def clear():
    ch.grid_forget()
    txt.delete("0","end")

Button(app,text='Vider',command=clear).grid(row=1 , column=1) # bouton qui lance la commande
app.mainloop()

您可以使用 txt.focus_force() 在其中书写,而无需先点击它。

from tkinter import *

app = Tk()
app.title("Vérification palindrome")
app.geometry("320x100")
app.resizable(width = False, height = False)

txt = Entry(app)
ch = Label(app)

txt.grid(row = 0, column = 0, sticky = W)

txt.focus_force() #whenever you want to do so, use this line of code

ch.grid(row = 1, column = 0)