Board logo

標題: 圖形介面 (七) - 身分驗證 [打印本頁]

作者: tonyh    時間: 2022-7-16 17:11     標題: 圖形介面 (七) - 身分驗證

本帖最後由 tonyh 於 2023-7-20 16:06 編輯

[attach]16083[/attach]






[attach]16082[/attach]
[attach]16081[/attach]
  1. import tkinter as tk
  2. import tkinter.messagebox as tmbox

  3. def check():
  4.     if name.get()=="Tony" and pw.get()=="456789":
  5.         tmbox.showinfo(title="驗證結果",message="您好,{}!".format(name.get()))
  6.     else:
  7.         tmbox.showinfo(title="驗證結果",message="驗證失敗!")
  8.         
  9. def clear():
  10.     name.set("")
  11.     pw.set("")

  12. win=tk.Tk()
  13. win.title("身份驗證")
  14. win.resizable(0,0)

  15. name=tk.StringVar()
  16. pw=tk.StringVar()

  17. fm=tk.Frame(win)
  18. lb=tk.Label(fm, text="來訪者:",width=7, anchor="e").pack(side="left")
  19. et=tk.Entry(fm, textvariable=name).pack(side="left", padx=10, pady=10)
  20. fm.pack()

  21. fm=tk.Frame(win)
  22. lb=tk.Label(fm, text="密碼:", width=7, anchor="e").pack(side="left")
  23. et=tk.Entry(fm, textvariable=pw, show="*").pack(side="left", padx=10)
  24. fm.pack()

  25. fm=tk.Frame(win)
  26. btn=tk.Button(fm, text="確定", width=12, bg="#CCEEFF", command=check).pack(side="left", padx=5, pady=20)
  27. btn=tk.Button(fm, text="清除", width=12, bg="#CCEEFF", command=clear).pack(side="left", padx=5, pady=20)
  28. fm.pack()

  29. win.mainloop()
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2