如何在Tkinter中隐藏密码

时间:2017-03-10 15:33:04

标签: python python-2.7 tkinter password-protection

def lock():
    global pas,lk
    lk=Tk.Frame(main)
    lk.pack(fill="both", anchor="center", expand=1)
    Tk.Label(lk, text="", font="arial 75").pack(anchor="center", side="top")
    fpas=Tk.LabelFrame(lk, text="Zadejte heslo:")
    fpas.pack(anchor="center")
    pas=Tk.Entry(fpas)
    pas.pack()
    Tk.Button(lk, text="OK", command=check).pack(side="top")
    Tk.Button(lk, text="Vypnout", command=lkend).pack(side="top")
    return

这是我的代码的一部分,我想改变它。当我将密码写入名为Tk.Entry的{​​{1}}时,我不想看到数字,而只是一个特定的符号,例如*或其他符号。谢谢你的回答。

P.S:请不要评估我的代码,我知道我可以写得更好,但我只是要求如何隐藏密码,而不是我的tkinter技能:-D

1 个答案:

答案 0 :(得分:4)

只需使用show小部件的Entry选项:

pas = Tk.Entry(fpas, show='*')